mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
Merge pull request #20939 from literalpie/qwik-docs
docs: qwik install and troubleshooting instructions
This commit is contained in:
commit
34b4920341
@ -14,6 +14,7 @@ title: 'Install Storybook'
|
||||
'get-started/installation-command-section/svelte.mdx',
|
||||
'get-started/installation-command-section/vue.mdx',
|
||||
'get-started/installation-command-section/web-components.mdx',
|
||||
'get-started/installation-command-section/qwik.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
@ -86,6 +87,7 @@ Below are some of the most common installation issues and instructions on how to
|
||||
'get-started/installation-problems/svelte.mdx',
|
||||
'get-started/installation-problems/vue.mdx',
|
||||
'get-started/installation-problems/web-components.mdx',
|
||||
'get-started/installation-problems/qwik.mdx',
|
||||
]}
|
||||
/>
|
||||
|
||||
|
15
docs/get-started/installation-command-section/qwik.mdx
Normal file
15
docs/get-started/installation-command-section/qwik.mdx
Normal file
@ -0,0 +1,15 @@
|
||||
Use the Storybook CLI to install it in a single command. Run this inside your _existing project’s_ root directory:
|
||||
|
||||
- With npm:
|
||||
|
||||
```shell
|
||||
npx storybook init
|
||||
```
|
||||
|
||||
- With pnpm:
|
||||
|
||||
```shell
|
||||
pnpx storybook init
|
||||
```
|
||||
|
||||
If you run into issues with the installation, check the [Troubleshooting section](#troubleshooting) below for guidance on how to solve it.
|
11
docs/get-started/installation-problems/qwik.mdx
Normal file
11
docs/get-started/installation-problems/qwik.mdx
Normal file
@ -0,0 +1,11 @@
|
||||
- Add the `--type qwik` flag to the installation command to set up Storybook manually:
|
||||
|
||||
```shell
|
||||
npx storybook init --type qwik
|
||||
```
|
||||
|
||||
- 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
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user