titles/auth.ts
christian 82fa5d0024
All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 2m36s
added signin button.
keep getting redirect url error
2024-05-16 21:58:14 +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],
})