From 1d5c401c51d5d8a7212390442e0e7ab2ff68685b Mon Sep 17 00:00:00 2001 From: Zoey Date: Sat, 20 Apr 2024 13:28:18 +0200 Subject: [PATCH] docs: Adjusted Recommended NextAuth Version --- docs/content/1.getting-started/2.installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/1.getting-started/2.installation.md b/docs/content/1.getting-started/2.installation.md index aaaee1af..32fa300b 100644 --- a/docs/content/1.getting-started/2.installation.md +++ b/docs/content/1.getting-started/2.installation.md @@ -14,10 +14,10 @@ npx nuxi@latest module add sidebase-auth If you want to use the `authjs` provider, you have to install `next-auth`. With all package managers except `npm` you must manually install the peer dependency alongside `nuxt-auth`: ::code-group ```bash [yarn] -yarn add next-auth@4.22.5 +yarn add next-auth@4.21.1 ``` ```bash [pnpm] -pnpm i next-auth@4.22.5 +pnpm i next-auth@4.21.1 ``` ::