mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
13 lines
254 B
Plaintext
13 lines
254 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
// your app's webpack.config.js
|
|
import custom from '../webpack.config.js';
|
|
|
|
export default {
|
|
webpackFinal: async (config) => {
|
|
return { ...config, module: { ...config.module, rules: custom.module.rules } };
|
|
},
|
|
};
|
|
```
|