From 3033a1c685c52b782a3bb9ec09c73369e17a119e Mon Sep 17 00:00:00 2001 From: Kostas Tzoumpas Date: Sat, 7 Oct 2023 17:44:20 +0300 Subject: [PATCH] try --- src/pages/api/auth/[...nextauth].ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/api/auth/[...nextauth].ts b/src/pages/api/auth/[...nextauth].ts index b20f41f..6745ccf 100644 --- a/src/pages/api/auth/[...nextauth].ts +++ b/src/pages/api/auth/[...nextauth].ts @@ -5,11 +5,11 @@ import GoogleProvider from "next-auth/providers/google" export const authOptions = { providers: [ GoogleProvider({ - clientId: process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID || '', - clientSecret: process.env.NEXT_PUBLIC_GOOGLE_CLIENT_SECRET || '', + clientId: process.env.NEXT_PUBLIC_GOOGLE_CLIENT_ID || '914628494898-onc9q6mppitoa680q721r42ki64hh556.apps.googleusercontent.com', + clientSecret: process.env.NEXT_PUBLIC_GOOGLE_CLIENT_SECRET || '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', }), ], - secret: 'hackathon', + // secret: 'hackathon', } export default NextAuth(authOptions)