mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:21:07 +08:00
12 lines
530 B
Plaintext
12 lines
530 B
Plaintext
- Add the `--type solid` flag to the installation command to set up Storybook manually:
|
|
|
|
```shell
|
|
npx storybook init --type solid
|
|
```
|
|
|
|
- Storybook's CLI provides support for [Yarn](https://yarnpkg.com/), [npm](https://www.npmjs.com/), and [pnpm](https://pnpm.io/) package managers. If you have Yarn installed in your environment but prefer to use another as your default package manager add the `--package-manager` flag to your installation command. For example:
|
|
|
|
```shell
|
|
npx storybook init --package-manager=npm
|
|
```
|