mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
13 lines
255 B
Plaintext
13 lines
255 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
// your app's webpack.config.js
|
|
const custom = require('../webpack.config.js');
|
|
|
|
module.exports = {
|
|
webpackFinal: (config) => {
|
|
return { ...config, module: { ...config.module, rules: custom.module.rules } };
|
|
},
|
|
};
|
|
```
|