Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdiez committed Aug 11, 2024
1 parent 2c76366 commit 10bd50a
Showing 1 changed file with 20 additions and 18 deletions.
38 changes: 20 additions & 18 deletions docs/content/1.getting-started/1.setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,31 +45,33 @@ The nightly release channel allows you to test the latest updates and features,

To use the nightly version, follow these steps:

- Modify the `@nuxtjs/storybook` dependency in your `package.json` to use the latest nightly release:
```json
{
"devDependencies": {
"nuxt": "npm:@nuxtjs/storybook@nightly"
}
}
```
- Modify the `@nuxtjs/storybook` dependency in your `package.json` to use the latest nightly release:

- Remove the lockfile and reinstall the dependencies using your package manager to ensure the nightly release is installed.
```json
{
"devDependencies": {
"nuxt": "npm:@nuxtjs/storybook@nightly"
}
}
```

- Remove the lockfile and reinstall the dependencies using your package manager to ensure the nightly release is installed.

#### Opting out of the nightly release

If you need to revert to the stable release, follow these steps:

- Change the `@nuxtjs/storybook` dependency in `package.json` back to the stable version:
```json
{
"devDependencies": {
"@nuxtjs/storybook": "latest"
}
}
```
- Change the `@nuxtjs/storybook` dependency in `package.json` back to the stable version:

```json
{
"devDependencies": {
"@nuxtjs/storybook": "latest"
}
}
```

- Remove the lockfile and reinstall the dependencies to revert to the stable release.
- Remove the lockfile and reinstall the dependencies to revert to the stable release.

## Storybook config Files

Expand Down

0 comments on commit 10bd50a

Please sign in to comment.