`/: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>
15 lines
274 B
JSON
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
|
|
}
|
|
]
|
|
}
|