From f7223d5283446a196dd7ec1c793868a4955d9f22 Mon Sep 17 00:00:00 2001 From: sirpiglr <49359077-sirpiglr@users.noreply.replit.com> Date: Tue, 2 Dec 2025 23:51:12 +0000 Subject: [PATCH] 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 --- vercel.json | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/vercel.json b/vercel.json index 16f76d4b..33c8d11d 100644 --- a/vercel.json +++ b/vercel.json @@ -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" },