authjs #2

Merged
christian merged 3 commits from authjs into main 2024-05-16 21:42:41 +00:00
Showing only changes of commit 3429f35b95 - Show all commits

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],
}) })