NeahStable/app/api/auth/[...nextauth]/route.ts
2026-01-09 21:06:52 +01: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 };