mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-09 10:44:38 -06:00
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
9 lines
226 B
TypeScript
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 };
|