storybook/docs/.storybook/webpack.config.js
Norbert de Langen 6e36fae268 FIX linting
2017-05-31 21:10:05 +02:00

23 lines
390 B
JavaScript

const path = require('path');
const config = {
module: {
rules: [
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
{
test: /\.yml$/,
use: ['json-loader', 'yaml-loader'],
},
{
test: /\.(jpg|png|gif|eot|svg|ttf|woff|woff2)$/,
use: ['file-loader'],
},
],
},
};
module.exports = config;