From da98a233c53565eebb93b5403418b9ed48c7f793 Mon Sep 17 00:00:00 2001 From: Youssef Date: Fri, 1 May 2026 18:12:27 +0100 Subject: [PATCH] =?UTF-8?q?vercel.json=20=E2=80=94=20point=20GitHub-trigge?= =?UTF-8?q?red=20builds=20at=20site/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous push deployed an empty production build (404) because GitHub-triggered builds use the repo root, but index.html lives in site/. Manual `vercel --prod` runs from inside site/ worked, but the auto-deploy needs an explicit outputDirectory. Co-Authored-By: Claude Opus 4.7 (1M context) --- vercel.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..43dc936 --- /dev/null +++ b/vercel.json @@ -0,0 +1,6 @@ +{ + "outputDirectory": "site", + "framework": null, + "buildCommand": null, + "installCommand": null +}