From 0199b803a2ebdd4655bf32dfc8ec90536580e604 Mon Sep 17 00:00:00 2001 From: Mohit kumar Bajoria Date: Fri, 22 Sep 2023 14:58:11 +0530 Subject: [PATCH] (docs): update next-auth docs After going through https://blitzjs.com/docs/next-auth#add-next-auth-adapter-next-config, found out that path doesn't exist, fixed it with this PR --- app/pages/docs/next-auth.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pages/docs/next-auth.mdx b/app/pages/docs/next-auth.mdx index 0df7437d..d835e4ef 100644 --- a/app/pages/docs/next-auth.mdx +++ b/app/pages/docs/next-auth.mdx @@ -13,7 +13,7 @@ gives you a lot more flexibility & control than NextAuth does ### 1. Add the NextAuth Adapter for `next.config.js` {#add-next-auth-adapter-next-config} ```ts -const { withNextAuthAdapter } = require("@blitzjs/auth/next-auth") +const { withNextAuthAdapter } = require("@blitzjs/auth") const { withBlitz } = require("@blitzjs/next") /**