storybook/docs/snippets/common/storybook-preset-full-config-object.js.mdx
2021-05-06 21:05:56 +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;
},
};
````