Skip to content

Commit

Permalink
revert to dev dep
Browse files Browse the repository at this point in the history
  • Loading branch information
s0h311 committed Dec 15, 2024
1 parent c7e6e30 commit 92e6422
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions docs/guide/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ yarn dlx nuxi module add sidebase-auth
::: code-group

```bash [npm]
npm i @sidebase/nuxt-auth
npm i -D @sidebase/nuxt-auth
```

```bash [pnpm]
pnpm i @sidebase/nuxt-auth
pnpm i -D @sidebase/nuxt-auth
```

```bash [yarn]
yarn add @sidebase/nuxt-auth
yarn add -D @sidebase/nuxt-auth
```

:::
Expand All @@ -42,10 +42,8 @@ Add NuxtAuth to your `nuxt.config`:

```ts [nuxt.config.ts]
export default defineNuxtConfig({
modules: [
'@sidebase/nuxt-auth',
],
})
modules: ["@sidebase/nuxt-auth"],

Check failure on line 45 in docs/guide/getting-started/installation.md

View workflow job for this annotation

GitHub Actions / test-module

Strings must use singlequote
});

Check failure on line 46 in docs/guide/getting-started/installation.md

View workflow job for this annotation

GitHub Actions / test-module

Extra semicolon
```

:::

0 comments on commit 92e6422

Please sign in to comment.