diff --git a/app/src/pages/api/auth/[...nextauth].ts b/app/src/pages/api/auth/[...nextauth].ts index 6940dce..7271d86 100644 --- a/app/src/pages/api/auth/[...nextauth].ts +++ b/app/src/pages/api/auth/[...nextauth].ts @@ -35,6 +35,7 @@ export const authOptions = { async jwt({ token, user, account, profile, isNewUser }) { return token } - } + }, + secret: process.env.SECRET } export default NextAuth(authOptions) \ No newline at end of file