mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
14 lines
285 B
Plaintext
14 lines
285 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
const path = require('path');
|
|
|
|
// 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 } };
|
|
},
|
|
};
|
|
``` |