mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:21:06 +08:00
19 lines
434 B
Plaintext
19 lines
434 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
module.exports = {
|
|
addons: ['@storybook/addon-essentials'],
|
|
babel: async (options) => ({
|
|
// Update your babel configuration here
|
|
...options,
|
|
}),
|
|
framework: '@storybook/react',
|
|
stories: ['../src/**/*.stories.@(js|mdx)'],
|
|
webpackFinal: async (config, { configType }) => {
|
|
// Make whatever fine-grained changes you need
|
|
// Return the altered config
|
|
return config;
|
|
},
|
|
};
|
|
```
|