From 587bb213b84964147dc4634a33bb5a88a90c2996 Mon Sep 17 00:00:00 2001 From: Joshua Butner <53810+heyjawrsh@users.noreply.github.com> Date: Sun, 5 Apr 2026 23:24:18 -0500 Subject: [PATCH] fix(web): fix Netlify build command for monorepo root context Netlify runs from the repo root, not the base directory. Remove the cd ../.. which navigated to /opt and fix publish path to apps/web/dist. --- apps/web/netlify.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/web/netlify.toml b/apps/web/netlify.toml index 1d5c743..3b161ac 100644 --- a/apps/web/netlify.toml +++ b/apps/web/netlify.toml @@ -1,7 +1,6 @@ [build] - # Netlify runs from the base directory, but needs repo root for pnpm workspace - command = "cd ../.. && pnpm install --frozen-lockfile && pnpm --filter @vxrtx/web build" - publish = "dist" + command = "pnpm install --frozen-lockfile && pnpm --filter @vxrtx/web build" + publish = "apps/web/dist" [build.environment] NODE_VERSION = "22"