Files
oms-website-nextjs/auth.ts
2025-04-20 18:19:43 +02:00

7 lines
173 B
TypeScript

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