From 405cbb390f56e54fbdb6c669e786d3bdb52e36fb Mon Sep 17 00:00:00 2001 From: "WinGuardian.net LLC" Date: Mon, 27 Apr 2026 10:56:46 -0700 Subject: [PATCH] fix(ci): only deploy to Vercel when landing/ changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Vercel ignore command: - Previous value exit 1 always triggered builds — replaced with a git diff check scoped to landing/ so Electron CI noise is eliminated and only actual landing page changes ship to Vercel. --- vercel.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..f7f66d7 --- /dev/null +++ b/vercel.json @@ -0,0 +1,3 @@ +{ + "ignoreCommand": "git diff HEAD^ HEAD --quiet -- landing/" +}