Files
boris/vercel.json
Gigi 133e4756b2 fix: add vercel.json to handle SPA routing on Vercel
Without this configuration, page refreshes result in 404 errors because
Vercel tries to serve non-existent files instead of routing through
index.html for client-side routing.
2025-10-10 16:22:33 +01:00

10 lines
97 B
JSON

{
"rewrites": [
{
"source": "/(.*)",
"destination": "/index.html"
}
]
}