mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:11:23 +08:00
Update storybook config to webpack2
This commit is contained in:
parent
0367cf29cd
commit
3550225a2c
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user