mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-09 10:44:38 -06:00
9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
import NextAuth from "next-auth";
|
|
import { authOptions } from "@formbricks/lib/authOptions";
|
|
|
|
export const fetchCache = "force-no-store";
|
|
|
|
const handler = NextAuth(authOptions);
|
|
|
|
export { handler as GET, handler as POST };
|