diff --git a/app/api/auth/[...nextauth]/route.ts b/app/api/auth/[...nextauth]/route.ts index 87f6488..bac97a2 100644 --- a/app/api/auth/[...nextauth]/route.ts +++ b/app/api/auth/[...nextauth]/route.ts @@ -1,4 +1,6 @@ import { handlers } from "@/auth"; +export const runtime = "edge"; + // Referring to the auth.ts we just created export const { GET, POST } = handlers;