From 9b8e77d9d4386f393b9e7385f836c56aa71e7324 Mon Sep 17 00:00:00 2001 From: Aditya Sharma Date: Tue, 29 Mar 2022 15:37:49 +0530 Subject: [PATCH] Update firebase.json --- firebase.json | 31 ++++++++++++++++++++++--------- 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/firebase.json b/firebase.json index 381bbd554..c7f4edc17 100644 --- a/firebase.json +++ b/firebase.json @@ -1,17 +1,30 @@ { - "hosting": { - "target": "commerce-hub-dev", + "hosting": [ + { + "target": "dev-hotwax-preorder", "public": "dist", "ignore": [ "firebase.json", "**/.*", "**/node_modules/**" ], - "rewrites": [ - { - "source": "**", - "destination": "/index.html" - } - ] + "rewrites": [ { + "source": "**", + "destination": "/index.html" + } ] + }, + { + "target": "hotwax-preorder", + "public": "dist", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ], + "rewrites": [ { + "source": "**", + "destination": "/index.html" + } ] } - } \ No newline at end of file + ] +}