Files
altbin.dev/app/api/auth/[...nextauth]/route.ts
T

7 lines
161 B
TypeScript
Raw Normal View History

2025-08-20 17:14:23 +02:00
import { authOptions } from "@/lib/auth";
import NextAuth from "next-auth";
2025-08-20 14:14:33 +02:00
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };