Files
altbin.dev/app/api/auth/[...nextauth]/route.ts
T
2025-08-20 17:14:23 +02:00

7 lines
161 B
TypeScript

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