From 3429f35b9571bd7da5601decdcd17cb7b853e9ad Mon Sep 17 00:00:00 2001 From: christian Date: Thu, 16 May 2024 22:08:11 +0200 Subject: [PATCH] working in dev mod. The issue was that my app url had http and the callback had https --- auth.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth.ts b/auth.ts index 7f21219..2bb7924 100644 --- a/auth.ts +++ b/auth.ts @@ -1,6 +1,6 @@ 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({ - providers: [github], + providers: [GitHub], })