homelab-dashboard/app/api/auth/[...nextauth]/route.ts
Bilal Teke c7fd939f41 v4.1
2026-04-20 20:35:43 +02:00

7 lines
190 B
TypeScript

export const runtime = "nodejs";
import NextAuth from 'next-auth';
import { authOptions } from '@/auth';
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };