Files
monde-usage/vercel.json
Gabriel Vidal aa1f45b394 fix(vercel): also redirect the root path
`/:path*` doesn't match the bare `/`, so the homepage still served the app
(causing cross-origin fetches to the new domain). Add an explicit `/` redirect
so every path — root included — 308s to monde-usage.game.gabvdl.xyz.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-27 18:57:25 +02:00

15 lines
274 B
JSON

{
"redirects": [
{
"source": "/",
"destination": "https://monde-usage.game.gabvdl.xyz/",
"permanent": true
},
{
"source": "/:path*",
"destination": "https://monde-usage.game.gabvdl.xyz/:path*",
"permanent": true
}
]
}