mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-22 05:02:18 +08:00
24 lines
490 B
JavaScript
24 lines
490 B
JavaScript
// IMPORTANT
|
|
// ---------
|
|
// This is an auto generated file with React CDK.
|
|
// Do not modify this file.
|
|
// Use `.storybook/user/modify_webpack_config.js instead`.
|
|
|
|
const path = require('path');
|
|
const updateConfig = require('./user/modify_webpack_config');
|
|
|
|
const config = {
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.css?$/,
|
|
loaders: ['style', 'raw'],
|
|
include: path.resolve(__dirname, '../'),
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
updateConfig(config);
|
|
module.exports = config;
|