Merge pull request #20939 from literalpie/qwik-docs

docs: qwik install and troubleshooting instructions
This commit is contained in:
jonniebigodes 2023-02-08 15:10:21 +00:00 committed by GitHub
commit 34b4920341
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 0 deletions

View File

@ -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',
]}
/>

View File

@ -0,0 +1,15 @@
Use the Storybook CLI to install it in a single command. Run this inside your _existing projects_ 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.

View 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
```