From b324e4fd8b1546cb46c5f7b0ee2d3838f339fa5f Mon Sep 17 00:00:00 2001 From: Julius Marminge Date: Tue, 7 Jan 2025 20:39:34 +0100 Subject: [PATCH] Update apps/nextjs/src/app/api/auth/[...nextauth]/route.ts --- apps/nextjs/src/app/api/auth/[...nextauth]/route.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/nextjs/src/app/api/auth/[...nextauth]/route.ts b/apps/nextjs/src/app/api/auth/[...nextauth]/route.ts index dcf224912..9bca462c6 100644 --- a/apps/nextjs/src/app/api/auth/[...nextauth]/route.ts +++ b/apps/nextjs/src/app/api/auth/[...nextauth]/route.ts @@ -3,8 +3,6 @@ import { NextRequest, NextResponse } from "next/server"; import { handlers, isSecureContext } from "@acme/auth"; -// Uncomment this line to enable edge runtime if your environment supports it -// export const runtime = "edge"; const EXPO_COOKIE_NAME = "__acme-expo-redirect-state"; const AUTH_COOKIE_PATTERN = /authjs\.session-token=([^;]+)/;