From 75731af9b62a746bada22852eb28efeda69831d4 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Fri, 8 May 2026 17:32:35 +0700 Subject: [PATCH] Remove edge runtime directive from route handler Cloudflare Workers via OpenNext tidak support Next.js edge runtime. Hapus export const runtime = "edge" agar handler jalan di Workers runtime. Co-Authored-By: Claude Opus 4.7 --- src/app/route.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/route.ts b/src/app/route.ts index 4050a57..baa9b2b 100644 --- a/src/app/route.ts +++ b/src/app/route.ts @@ -6,7 +6,6 @@ import { isAllowedTarget, } from "@/lib/relay-utils"; -export const runtime = "edge"; async function handler(req: Request): Promise { if (req.method === "OPTIONS") {