From 5e562bbca2636ce56c70b0edb3e33e0d25f24234 Mon Sep 17 00:00:00 2001 From: archandatta <35818003+archandatta@users.noreply.github.com> Date: Tue, 4 Aug 2026 14:21:32 +0000 Subject: [PATCH] Stop Vercel from deploying the docs repo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Vercel project for this repo is configured as a Next.js app, and this repo has no package.json at all, so every deployment fails at "No Next.js version detected" — on main and on every pull request. Docs are deployed by Mintlify, which is the check that actually reports whether a change is live. Turning deployments off at the repo level removes a permanently red check that every contributor has learned to ignore. The alternative is disconnecting the project in the Vercel dashboard, which does the same thing but isn't visible here. Co-Authored-By: Claude Opus 5 --- vercel.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..45c873b --- /dev/null +++ b/vercel.json @@ -0,0 +1,5 @@ +{ + "git": { + "deploymentEnabled": false + } +}