homelab-dashboard/app/api/auth/[...nextauth]/route.ts
Bilal Teke 69c2057252 v4
2026-04-20 14:34:07 +02:00

6 lines
157 B
TypeScript

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