Skip to content

Commit b24abfa

Browse files
authored
fix(proxy): override Vercel build command so it doesn't run turbo (#13448)
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.
1 parent a99514b commit b24abfa

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

apps/proxy/vercel.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema": "https://openapi.vercel.sh/vercel.json",
3+
"buildCommand": "echo 'No build step required: the proxy is deployed as Vercel Functions from api/'"
4+
}

0 commit comments

Comments
 (0)