Babel
As of version 7.0, Storybook now re-uses your project’s Babel configuration to apply the same Babel plugins and presets in your Storybook stories as you do in your app. This makes it simpler, less buggy, easier to troubleshoot, and more consistent with other tools in the JS ecosystem.
If you're not using Storybook 7, please reference the previous documentation for guidance on configuring your Babel setup.
CRA (Create React App)
CRA apps using @storybook/react-webpack5
with the @storybook/preset-create-react-app
package use CRA's Babel handling to behave as close as possible to your actual application. None of the other documentation on this page applies.
Configuring
In Storybook 7, you are responsible for configuring Babel using your .babelrc
file, and Storybook does not provide any default. Storybook's frameworks and addons may provide minor programmatic modifications to the Babel configuration.
Migrating from V6
For detailed instructions on migrating from V6
mode, please see MIGRATION.md.
Generate a babelrc
If your app does not include a babelrc file, and you need one, you can create it by running the following command in your project directory:
Once the command completes, you should have a .babelrc.json
file created in the root directory of your project, similar to the following example:
Example Babel configuration
Depending on your environment, you may need to install additional package dependencies.
Babelrc vs. Babel config
Babel has two different configuration modes: babelrc and Babel config. As explained in more detail in Babel's docs:
- babelrc configures Babel for files in the same folder (or descendant folders) of the location of the babelrc
- Babel config configures Babel globally
Babel recommends to use babelrc, and it's what Storybook generates when you run npx storybook babelrc
. If your stories are located in the current project directory (e.g., stories: ['../src/**/*.stories.js']
) this approach will work well.
However, when your Storybook refers to files outside of the current project directory (e.g., stories: ['../../some-other-directory/**/*.stories.js']
), the babelrc will not apply to those files. However, a Babel config will, and is the recommended approach in that situation.
Troubleshooting
To troubleshoot your Babel configuration, set the BABEL_SHOW_CONFIG_FOR
environment variable. For example, to see how Storybook is transpiling your .storybook/preview.js
file, add the following environment variable:
When the command finishes running, it will display the available Babel configuration for the .storybook/preview.js
file. You can use this information to debug issues with transpilation.
💡 Due to what appears to be a Babel bug, setting this flag causes Babel transpilation to fail on the file provided. Thus you cannot actually run Storybook using this command. However, it will print out the configuration information as advertised, and therefore you can use this to debug your Storybook. You'll need to remove the flag to actually run your Storybook.
For more info, please refer to the Babel documentation.