storybook/docs/snippets/common/storybook-main-custom-babel-config.js.mdx
2022-11-17 16:33:22 +01:00

13 lines
178 B
Plaintext

```js
// .storybook/main.js
module.exports = {
stories: [],
addons: [],
babel: async (options) => ({
...options,
// any extra options you want to set
}),
};
```