storybook/docs/get-started/frameworks/web-components-vite.mdx
Charles de Dreuille 3ee7e625b5 Move frameworks
2024-06-13 18:12:46 +01:00

100 lines
2.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Storybook for Web components & Vite
---
export const SUPPORTED_RENDERER = 'web-components';
Storybook for Web components & Vite is a [framework](../contribute/framework.md) that makes it easy to develop and test UI components in isolation for applications using [Web components](https://www.webcomponents.org/introduction) built with [Vite](https://vitejs.dev/).
<If notRenderer={SUPPORTED_RENDERER}>
<Callout variant="info">
Storybook for Web components & Vite is only supported in [Web components](?renderer=web-components) projects.
</Callout>
{/* End non-supported renderers */}
</If>
<If renderer={SUPPORTED_RENDERER}>
## Requirements
* Vite ≥ 4.0
* Storybook ≥ 8.0
## Getting started
### In a project without Storybook
Follow the prompts after running this command in your Web components project's root directory:
{/* prettier-ignore-start */}
<CodeSnippets path="init-command.md" />
{/* prettier-ignore-end */}
[More on getting started with Storybook.](./install.md)
### In a project with Storybook
This framework is designed to work with Storybook 7+. If youre not already using v7, upgrade with this command:
{/* prettier-ignore-start */}
<CodeSnippets path="storybook-upgrade.md" />
{/* prettier-ignore-end */}
#### Automatic migration
When running the `upgrade` command above, you should get a prompt asking you to migrate to `@storybook/web-components-vite`, which should handle everything for you. In case that auto-migration does not work for your project, refer to the manual migration below.
#### Manual migration
First, install the framework:
{/* prettier-ignore-start */}
<CodeSnippets path="web-components-vite-install.md" />
{/* prettier-ignore-end */}
Then, update your `.storybook/main.js|ts` to change the framework property:
{/* prettier-ignore-start */}
<CodeSnippets path="web-components-vite-add-framework.md" />
{/* prettier-ignore-end */}
## API
### Options
You can pass an options object for additional configuration if needed:
```js
// .storybook/main.js
import * as path from 'path';
export default {
// ...
framework: {
name: '@storybook/web-components-vite',
options: {
// ...
},
},
};
```
The available options are:
#### `builder`
Type: `Record<string, any>`
Configure options for the [framework's builder](../api/main-config-framework.md#optionsbuilder). For this framework, available options can be found in the [Vite builder docs](../builders/vite.md).
{/* End supported renderers */}
</If>