fix: add vercel.json to force Next.js framework detection

Vercel may not be detecting the Next.js framework correctly,
causing 404 on all routes. Explicit configuration should fix this.

https://claude.ai/code/session_01H2aRGDaKgarPvhay2HxN6Y
This commit is contained in:
Claude
2026-02-08 20:26:41 +00:00
parent 5ffb4fe32e
commit dd6ec0816b

5
vercel.json Normal file
View File

@@ -0,0 +1,5 @@
{
"framework": "nextjs",
"buildCommand": "next build",
"installCommand": "npm install"
}