mirror of
https://github.com/formbricks/formbricks.git
synced 2026-04-19 19:21:15 -05:00
* Add new env variable NEXT_PUBLIC_WEBAPP_URL that is used server-side for the current address * Move Next-Auth to App-Directory * Move Membership-API & User-API to App-Directory * Update env-examples with new structure
7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
import NextAuth from "next-auth";
|
|
import { authOptions } from "./authOptions";
|
|
|
|
const handler = NextAuth(authOptions);
|
|
|
|
export { handler as GET, handler as POST };
|