From cf9dddd56e14a9993d19719ec084651cb192fbe8 Mon Sep 17 00:00:00 2001 From: Xevion Date: Wed, 18 May 2022 16:37:29 -0500 Subject: [PATCH] Fix function rewrites order --- firebase.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/firebase.json b/firebase.json index b472169..8dcb777 100644 --- a/firebase.json +++ b/firebase.json @@ -7,13 +7,13 @@ "**/node_modules/**" ], "rewrites": [ - { - "source": "**", - "destination": "/index.html" - }, { "source": "/hello-world/", "function": "helloWorld" + }, + { + "source": "**", + "destination": "/index.html" } ] },