From 2ed39e77b77b2c4fe83cefce441fecc9a1446610 Mon Sep 17 00:00:00 2001 From: Doug Johnson Date: Thu, 21 May 2026 11:20:16 -0700 Subject: [PATCH 1/3] Basic redirect ** to .earth --- firebase.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/firebase.json b/firebase.json index f5cfe6f2..c29b01db 100644 --- a/firebase.json +++ b/firebase.json @@ -6,10 +6,11 @@ "**/.*", "**/node_modules/**" ], - "rewrites": [ + "redirects": [ { "source": "**", - "destination": "/index.html" + "destination": "https://whatstherush.earth/", + "type": 302 } ], "headers": [ From 894dddd1d0786000b9a9f7e4f17bf1f342582cc9 Mon Sep 17 00:00:00 2001 From: Doug Johnson Date: Thu, 21 May 2026 11:28:48 -0700 Subject: [PATCH 2/3] Include path --- firebase.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firebase.json b/firebase.json index c29b01db..16c18fda 100644 --- a/firebase.json +++ b/firebase.json @@ -8,8 +8,8 @@ ], "redirects": [ { - "source": "**", - "destination": "https://whatstherush.earth/", + "source": "/:path*", + "destination": "https://whatstherush.earth/:path", "type": 302 } ], From 2a9b733d1d321252d5a5e83db05b6767016c5002 Mon Sep 17 00:00:00 2001 From: Doug Johnson Date: Thu, 21 May 2026 11:37:43 -0700 Subject: [PATCH 3/3] Add root catch-all redirect --- firebase.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/firebase.json b/firebase.json index 16c18fda..8417ce0f 100644 --- a/firebase.json +++ b/firebase.json @@ -11,6 +11,11 @@ "source": "/:path*", "destination": "https://whatstherush.earth/:path", "type": 302 + }, + { + "source": "**", + "destination": "https://whatstherush.earth/", + "type": 302 } ], "headers": [