From dd6ec0816b7ae15390168af53998bcd0326fffd1 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 8 Feb 2026 20:26:41 +0000 Subject: [PATCH] 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 --- 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..9c59320 --- /dev/null +++ b/vercel.json @@ -0,0 +1,5 @@ +{ + "framework": "nextjs", + "buildCommand": "next build", + "installCommand": "npm install" +}