From 56f83a86336783be4edf9a9c22e6c048b6ab24f3 Mon Sep 17 00:00:00 2001 From: Hitakshi Arora Date: Fri, 10 Jul 2026 22:33:12 +0530 Subject: [PATCH] feat(console): point /api at the BenzoNet L1 BFF (benzonet-api.benzo.space) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The console is a thin client over the BFF; app-side BenzoNet config already matches the live manifest (eERC 0xEE46418e…, Registrar 0x0B1f4e78…). This repoints the /api rewrite from the Fuji-era Cloud Run backend to the BenzoNet API instance now live on our Azure VM (its own DB, ops key, dev zk-artifacts, L1 RPC; API_DOMAIN=console.benzo.space). --- apps/console/vercel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/console/vercel.json b/apps/console/vercel.json index e1d38cc..8b0bcb3 100644 --- a/apps/console/vercel.json +++ b/apps/console/vercel.json @@ -4,7 +4,7 @@ "outputDirectory": "dist", "framework": "vite", "rewrites": [ - { "source": "/api/:path*", "destination": "https://benzo-api-dzv6bwbpba-ue.a.run.app/:path*" }, + { "source": "/api/:path*", "destination": "https://benzonet-api.benzo.space/:path*" }, { "source": "/((?!api/|assets/).*)", "destination": "/index.html" } ] }