From 235eb48b1b7222510cdc042a5aea93c985191bfe Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 16 Nov 2025 04:12:29 +0000 Subject: [PATCH] Update domain redirects and add base domain rewrites for subdomains cgen-5ca7daeacf114a88a0dcf85a8d15249d --- vercel.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 1fc2921d..a7745110 100644 --- a/vercel.json +++ b/vercel.json @@ -30,7 +30,19 @@ { "source": "/:path(.*)", "has": [{ "type": "host", "value": "aethex.site" }], - "destination": "https://aethex.me", + "destination": "https://aethex.dev/:path", + "permanent": true + }, + { + "source": "/", + "has": [{ "type": "host", "value": "aethex.me" }], + "destination": "https://aethex.dev/", + "permanent": true + }, + { + "source": "/", + "has": [{ "type": "host", "value": "aethex.space" }], + "destination": "https://aethex.dev/", "permanent": true } ],