From 5153f0b01c5dca5fe4219fed944b9af6b99508ce Mon Sep 17 00:00:00 2001 From: Roman Popat Date: Tue, 8 Apr 2025 20:23:34 +0000 Subject: [PATCH] fix: route all requests to index.html to allow direct links e.g. direct to posts --- bs3/firebase.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bs3/firebase.json b/bs3/firebase.json index a57ec86..380789b 100644 --- a/bs3/firebase.json +++ b/bs3/firebase.json @@ -9,6 +9,12 @@ "firebase.json", "**/.*", "**/node_modules/**" + ], + "rewrites": [ + { + "source": "**", + "destination": "/index.html" + } ] } }