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 <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-05-08 17:32:35 +07:00
co-authored by Claude Opus 4.7
parent 765bcdca44
commit 75731af9b6
-1
View File
@@ -6,7 +6,6 @@ import {
isAllowedTarget,
} from "@/lib/relay-utils";
export const runtime = "edge";
async function handler(req: Request): Promise<Response> {
if (req.method === "OPTIONS") {