From fa209848ff0cd5b4ffd47f7b5c147353393e2362 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 21 May 2026 13:22:36 +0000 Subject: [PATCH] fix: ignore gh-pages branch in vercel.json Configure Vercel to ignore the gh-pages branch, which resolves an issue where Vercel automatically attempts to build and deploy the branch, failing because it does not have the original source repository structure. Co-authored-by: NiksheyYadav <143432044+NiksheyYadav@users.noreply.github.com> --- vercel.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..e686f30 --- /dev/null +++ b/vercel.json @@ -0,0 +1,7 @@ +{ + "git": { + "deploymentEnabled": { + "gh-pages": false + } + } +}