Files
formbricks/apps/web/app/api/auth/[...nextauth]/route.ts
Dhruwang Jariwala f80d1b32b7 chore: Auth module revamp (#4335)
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2024-11-26 08:28:13 +00:00

9 lines
226 B
TypeScript

import { authOptions } from "@/modules/auth/lib/authOptions";
import NextAuth from "next-auth";
export const fetchCache = "force-no-store";
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };