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