link-stack/apps/bridge-frontend/app/api/auth/[...nextauth]/route.ts

8 lines
196 B
TypeScript
Raw Normal View History

2024-03-17 12:58:25 +01:00
import NextAuth from "next-auth";
import { authOptions } from "@/app/_lib/authentication";
2024-04-23 13:36:51 +02:00
// @ts-expect-error
2024-03-17 12:58:25 +01:00
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };