mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
- Emphasize requirement to install in existing project - Add link to Troubleshooting section - Update welcome screenshot to include correct "edit" filename - Re-arrange content order, so that Troubleshooting isn't last - Update React Storybook examples - Remove react-native-web, as that project no longer uses Storybook - Point to SB Design System instead of react-dates, as it uses modern features
13 lines
383 B
Plaintext
13 lines
383 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 sb 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.
|