vercel.json — point GitHub-triggered builds at site/

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) <noreply@anthropic.com>
This commit is contained in:
Youssef
2026-05-01 18:12:27 +01:00
co-authored by Claude Opus 4.7
parent e97604752e
commit da98a233c5
+6
View File
@@ -0,0 +1,6 @@
{
"outputDirectory": "site",
"framework": null,
"buildCommand": null,
"installCommand": null
}