From 2851608662cfec26cf96c9ea3bbc7c9b4aa6d447 Mon Sep 17 00:00:00 2001 From: Bereket Engida Date: Thu, 11 Jun 2026 15:19:34 -0700 Subject: [PATCH] fix(proxy): override Vercel build command so it doesn't run turbo The proxy is intentionally outside the pnpm workspace and has no build step (it ships as Vercel Functions compiled from api/). Vercel was auto-detecting Turbo and defaulting the build command to `turbo run build`, which fails with "Could not find task build in project" because the isolated proxy package has no turbo.json or build task. Add a vercel.json with an explicit no-op buildCommand so Vercel skips turbo; the api/ functions are still detected and deployed. --- apps/proxy/vercel.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 apps/proxy/vercel.json diff --git a/apps/proxy/vercel.json b/apps/proxy/vercel.json new file mode 100644 index 0000000000..7d0647fdb7 --- /dev/null +++ b/apps/proxy/vercel.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://openapi.vercel.sh/vercel.json", + "buildCommand": "echo 'No build step required: the proxy is deployed as Vercel Functions from api/'" +}