Remove wildcard subdomain routing for external passport app

Remove rewrites for *.aethex.me and *.aethex.space from vercel.json as they are handled by a separate passport application.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 9203795e-937a-4306-b81d-b4d5c78c240e
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 4154a801-6e77-4141-a729-3318fc9ced99
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7c94b7a0-29c7-4f2e-94ef-44b2153872b7/9203795e-937a-4306-b81d-b4d5c78c240e/saoW2ee
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
sirpiglr 2025-12-02 23:51:12 +00:00
commit 8410b2a0e5

View file

@ -53,28 +53,6 @@
}
],
"rewrites": [
{
"source": "/:path(.*)",
"has": [{ "type": "host", "value": "*.aethex.me" }],
"missing": [{ "type": "header", "key": "x-vercel-rewrite-override" }],
"destination": "/index.html"
},
{
"source": "/:path(.*)",
"has": [{ "type": "host", "value": "*.aethex.space" }],
"missing": [{ "type": "header", "key": "x-vercel-rewrite-override" }],
"destination": "/index.html"
},
{
"source": "/api/:path(.*)",
"has": [{ "type": "host", "value": "*.aethex.me" }],
"destination": "/api/:path"
},
{
"source": "/api/:path(.*)",
"has": [{ "type": "host", "value": "*.aethex.space" }],
"destination": "/api/:path"
},
{ "source": "/", "destination": "/index.html" },
{ "source": "/login", "destination": "/index.html" },
{ "source": "/login/:path*", "destination": "/index.html" },