mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:51:05 +08:00
30 lines
1.5 KiB
Plaintext
30 lines
1.5 KiB
Plaintext
---
|
|
title: 'Builders'
|
|
hideRendererSelector: true
|
|
sidebar:
|
|
order: 9
|
|
title: Builders
|
|
---
|
|
|
|
Storybook, at its core, is powered by builders such as Webpack and Vite. These builders spin up a development environment, compile your code—Javascript, CSS, and MDX—into an executable bundle and update the browser in real-time.
|
|
|
|

|
|
|
|
## CLI basics
|
|
|
|
Before diving into setting up Storybook's builders, let's look at how the CLI configures them. When you initialize Storybook (via `npx storybook@latest init`), the CLI automatically detects which builder to use based on your application. For example, if you're working with Vite, it will install the Vite builder. If you're working with Webpack, it installs the Webpack 5 builder by default.
|
|
|
|
Additionally, you can also provide a flag to Storybook's CLI and specify the builder you want to use:
|
|
|
|
```shell
|
|
npx storybook@latest init --builder <webpack5 | vite>
|
|
```
|
|
|
|
## Manual setup
|
|
|
|
Storybook uses the Webpack 5 builder by default if you don't specify one. If you want to use a different builder in your application, these docs detail how you can set up Storybook's supported builders.
|
|
|
|
* [**Vite builder**](./vite.mdx) for bundling your stories with Vite with near-instant HMR.
|
|
* [**Webpack**](./webpack.mdx) for bundling your stories with Webpack with improved performance
|
|
* [**Rspack / Rsbuild**](https://github.com/rspack-contrib/storybook-rsbuild) for bundling your stories with blazing fast Rspack and Rsbuild.
|