storybook/docs/api/main-config-babel-default.md
2023-11-03 13:05:44 -04:00

1.1 KiB

title
babelDefault

Parent: main.js|ts configuration

Type: (config: Babel.Config, options: Options) => Babel.Config | Promise<Babel.Config>

babelDefault allows customization of Storybook's Babel setup. It is applied to the preview config before any user presets have been applied, which makes it useful and recommended for addon authors so that the end user's babel setup can override it.

To adjust your Storybook's Babel setup directly—not via an addon—use babel instead.

<CodeSnippets paths={[ 'common/storybook-babel-configuration-example.ts.mdx', ]} />

Babel.Config

See Babel docs.

Options

Type: { configType?: 'DEVELOPMENT' | 'PRODUCTION' }

There are other options that are difficult to document here. Please introspect the type definition for more information.