Files
reflector/www/app/api/auth/[...nextauth]/route.ts
2025-09-03 10:53:03 -04:00

7 lines
175 B
TypeScript

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