mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
20 lines
383 B
Plaintext
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;
|
|
},
|
|
};
|
|
```` |