titles/auth.ts
christian 3429f35b95
All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 2m19s
working in dev mod. The issue was that my app url had http and the callback had https
2024-05-16 22:08:11 +02:00

7 lines
171 B
TypeScript

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