link-stack/apps/link/app/api/auth/[...nextauth]/route.ts
2024-09-27 13:11:31 +02:00

6 lines
176 B
TypeScript

import NextAuth from "next-auth";
import { authOptions } from "@/app/_lib/authentication";
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };