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