storybook/docs/snippets/common/storybook-preset-full-config-object.js.mdx
2020-08-11 01:11:41 +01: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;
},
};
````