From 80161206852f5d504e7588027f7095d2d3f7fcf3 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 16 Nov 2025 04:12:19 +0000 Subject: [PATCH] Add subdomain routing for user.aethex.me and group.aethex.space cgen-e7d85d6767434965a7690817b7bc8f4e --- vercel.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vercel.json b/vercel.json index dcf8a9dd..1fc2921d 100644 --- a/vercel.json +++ b/vercel.json @@ -35,6 +35,8 @@ } ], "rewrites": [ + { "source": "/:path(.*)", "has": [{ "type": "host", "value": "*.aethex.me" }], "destination": "/index.html" }, + { "source": "/:path(.*)", "has": [{ "type": "host", "value": "*.aethex.space" }], "destination": "/index.html" }, { "source": "/", "destination": "/index.html" }, { "source": "/login", "destination": "/index.html" }, { "source": "/login/:path*", "destination": "/index.html" },