Files
nrx.sh/src/auth.ts

7 lines
182 B
TypeScript
Raw Normal View History

2025-04-04 23:29:57 +02:00
import NextAuth from "next-auth";
import Authentik from "next-auth/providers/authentik";
export const { handlers, signIn, signOut, auth } = NextAuth({
providers: [Authentik],
});