storybook/docs/snippets/common/storybook-preset-full-config-object.js.mdx
2020-10-07 12:23:34 +08:00

20 lines
383 B
Plaintext

```js
// .storybook/my-preset.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) => {
return config;
},
babel: async (config, options) => {
return config;
},
};
````