From 58553f936e5b7d0767841fefa3a8e6126caf9349 Mon Sep 17 00:00:00 2001 From: MythEclipse Date: Wed, 10 Jun 2026 21:22:37 +0700 Subject: [PATCH] fix: disable Vercel Next.js framework detection Add "framework": null to vercel.json so Vercel doesn't try to run Next.js build flow (looking for .next/routes-manifest.json). Co-Authored-By: Claude Fable 5 --- vercel.json | 1 + 1 file changed, 1 insertion(+) diff --git a/vercel.json b/vercel.json index cb07b73..648f3be 100644 --- a/vercel.json +++ b/vercel.json @@ -1,4 +1,5 @@ { + "framework": null, "bunVersion": "1.x", "rewrites": [ { "source": "/(.*)", "destination": "/api/relay" }