storybook/docs/snippets/common/storybook-main-custom-babel-config.js.mdx
2021-11-06 03:20:29 +00:00

12 lines
177 B
Plaintext

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