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