7 lines
182 B
TypeScript
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],
|
||
|
});
|