working in dev mod. The issue was that my app url had http and the callback had https
All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 2m19s

This commit is contained in:
christian 2024-05-16 22:08:11 +02:00
parent 82fa5d0024
commit 3429f35b95

View File

@ -1,6 +1,6 @@
import NextAuth from "next-auth" import NextAuth from "next-auth"
import github from "next-auth/providers/github" import GitHub from "next-auth/providers/github"
export const { handlers, signIn, signOut, auth } = NextAuth({ export const { handlers, signIn, signOut, auth } = NextAuth({
providers: [github], providers: [GitHub],
}) })