mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
13 lines
390 B
Plaintext
13 lines
390 B
Plaintext
Use the Storybook CLI to install it with a couple of commands. Run this inside your _existing project’s_ root directory:
|
||
|
||
```shell
|
||
# Add Storybook:
|
||
npx storybook init
|
||
|
||
# Add Ember storybook adapter
|
||
ember install @storybook/ember-cli-storybook
|
||
|
||
```
|
||
|
||
If you run into issues with the installation, check the [Troubleshooting section](#troubleshooting) below for guidance on how to solve it.
|