storybook/docs/.storybook/webpack.config.js
Norbert de Langen 5c66edabae FIX linting
2017-05-26 14:15:20 +02:00

24 lines
476 B
JavaScript

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