Update storybook config to webpack2

This commit is contained in:
Michael Shilman 2017-05-29 22:49:23 +12:00
parent 0367cf29cd
commit 3550225a2c

View File

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