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 };
|