titles/auth.ts

7 lines
171 B
TypeScript
Raw Permalink Normal View History

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