mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:11:11 +08:00
21 lines
406 B
Plaintext
21 lines
406 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
module.exports = {
|
|
managerWebpack: async (config, options) => {
|
|
// update config here
|
|
return config;
|
|
},
|
|
managerBabel: async (config, options) => {
|
|
// update config here
|
|
return config;
|
|
},
|
|
webpackFinal: async (config, options) => {
|
|
// change webpack config
|
|
return config;
|
|
},
|
|
babel: async (config, options) => {
|
|
return config;
|
|
},
|
|
};
|
|
``` |