add Vercel rewrites for SPA client-side routing

All paths serve index.html so React Router handles routing.
Fixes 404 on page refresh for routes like /home, /game, etc.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
main
name 2026-04-12 00:36:14 -07:00
parent c249973cef
commit 4a2ae5ec6c
1 changed files with 5 additions and 0 deletions

5
vercel.json 100644
View File

@ -0,0 +1,5 @@
{
"rewrites": [
{ "source": "/(.*)", "destination": "/index.html" }
]
}