Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
0xk0stas committed Oct 7, 2023
1 parent c20df85 commit 3033a1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/api/auth/[...nextauth].ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3033a1c

Please sign in to comment.