storybook/docs/snippets/common/storybook-main-advanced-config-example.js.mdx
2020-10-07 12:23:34 +08:00

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;
},
};
```