fix: github auth broke

This commit is contained in:
trafficlunar 2026-04-10 20:48:12 +01:00
parent 8673eb17e9
commit 68fa74add2

View file

@ -8,7 +8,7 @@ import { prisma } from "@/lib/prisma";
export const { handlers, signIn, signOut, auth } = NextAuth({
adapter: PrismaAdapter(prisma),
providers: [Discord, Github, Google],
providers: [Discord, Github({ issuer: "https://github.com/login/oauth" }), Google],
pages: {
signIn: "/login",
},