From b431e07bc517161e8e51b4eede2db0b71a27952f Mon Sep 17 00:00:00 2001 From: Ekong Jemimah Date: Wed, 29 Jul 2026 22:48:18 +0100 Subject: [PATCH] feat: add Vercel ignoreCommand to skip frontend builds on unrelated changes --- vercel.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 83e51d85..3d114579 100644 --- a/vercel.json +++ b/vercel.json @@ -3,5 +3,6 @@ "framework": "nextjs", "installCommand": "npm install", "buildCommand": "npm run build --workspace=frontend", - "devCommand": "npm run dev --workspace=frontend" + "devCommand": "npm run dev --workspace=frontend", + "ignoreCommand": "git diff --quiet HEAD^ HEAD -- frontend/" }