Files
wfh/src/app/api/auth/[...nextauth]/route.ts

10 lines
235 B
TypeScript
Raw Normal View History

2026-03-12 19:47:28 -05:00
import NextAuth from "next-auth";
2026-03-12 19:59:59 -05:00
export const dynamic = "force-dynamic";
export const runtime = "nodejs";
2026-03-12 19:47:28 -05:00
import { authOptions } from "@/lib/auth";
2026-03-12 17:09:22 -05:00
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };