NeahNew/app/api/auth/[...nextauth]/route.ts
2025-05-05 13:00:36 +02:00

7 lines
161 B
TypeScript

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