storybook/docs/snippets/common/storybook-main-default-setup.js.mdx
2022-07-07 19:26:21 +01:00

23 lines
494 B
Plaintext

```js
// .storybook/main.js
module.exports = {
stories: ['../src/**/*.stories.@(js|mdx)'],
addons: ['@storybook/addon-essentials'],
framework: '@storybook/react',
core: {
builder: '@storybook/builder-webpack5',
},
babel: async (options) => ({
// Update your babel configuration here
...options,
}),
webpackFinal: async (config, { configType }) => {
// Make whatever fine-grained changes you need
// Return the altered config
return config;
},
};
```