From 3a32b36292689a12e68192e36774220909b10fa3 Mon Sep 17 00:00:00 2001 From: developomp Date: Mon, 17 May 2021 16:43:41 +0900 Subject: [PATCH] hopefully this will fix it --- .github/workflows/firebase-hosting-merge.yml | 2 +- firebase.json | 30 +++++++++----------- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml index 0545ae7..9c186e3 100644 --- a/.github/workflows/firebase-hosting-merge.yml +++ b/.github/workflows/firebase-hosting-merge.yml @@ -17,5 +17,5 @@ jobs: repoToken: "${{ secrets.GITHUB_TOKEN }}" firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_DEVELOPOMP_SITE }}" channelId: live - projectId: developomp-site-dev + projectId: developomp-site target: dev diff --git a/firebase.json b/firebase.json index d149483..bbec2ce 100644 --- a/firebase.json +++ b/firebase.json @@ -1,18 +1,16 @@ { - "hosting": { - "target": "dev", - "cleanUrls": true, - "public": "source/build", - "rewrites": [ - { - "source": "**", - "destination": "/index.html" - } - ], - "ignore": [ - "firebase.json", - "**/.*", - "**/node_modules/**" - ] - } + "hosting": [ + { + "target": "dev", + "cleanUrls": true, + "public": "source/build", + "rewrites": [ + { + "source": "**", + "destination": "/index.html" + } + ], + "ignore": ["firebase.json", "**/.*", "**/node_modules/**"] + } + ] }