Files
nrx.sh/src/auth.ts
Nareshkumar Rao 434536d1f2
All checks were successful
Build / build (push) Successful in 3m31s
use authentik for auth
2025-04-04 23:29:57 +02:00

7 lines
182 B
TypeScript

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