mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
24 lines
477 B
JavaScript
24 lines
477 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, '../'),
|
|
},
|
|
],
|
|
},
|
|
};
|