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

7 lines
176 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";
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };