mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-20 05:02:37 +08:00
17 lines
288 B
Plaintext
17 lines
288 B
Plaintext
```js
|
|
// .storybook/my-preset.js
|
|
|
|
module.exports = {
|
|
managerWebpack: async (config, options) => {
|
|
// Update config here
|
|
return config;
|
|
},
|
|
webpackFinal: async (config, options) => {
|
|
return config;
|
|
},
|
|
babel: async (config, options) => {
|
|
return config;
|
|
},
|
|
};
|
|
```
|