From ad2b5583de3186010fd591ca718880c033f16215 Mon Sep 17 00:00:00 2001 From: "Nicholas G." Date: Thu, 4 Jan 2024 18:08:04 -0500 Subject: [PATCH] Added next-auth secret --- nanolims_app/pages/api/auth/[...nextauth].js | 1 + 1 file changed, 1 insertion(+) diff --git a/nanolims_app/pages/api/auth/[...nextauth].js b/nanolims_app/pages/api/auth/[...nextauth].js index 6d94fe0..00523ce 100644 --- a/nanolims_app/pages/api/auth/[...nextauth].js +++ b/nanolims_app/pages/api/auth/[...nextauth].js @@ -72,4 +72,5 @@ export default NextAuth({ // error: "/auth/error", // verifyRequest: "/auth/verify-request", }, + secret: process.env.NEXTAUTH_SECRET, });