From 70514a1c4da079e7c143e727f065dda08244415d Mon Sep 17 00:00:00 2001 From: Justin Elias Date: Fri, 31 Jan 2020 17:58:46 -0700 Subject: [PATCH] added fix for #8893 (#10370) --- examples/with-firebase-hosting/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-firebase-hosting/package.json b/examples/with-firebase-hosting/package.json index 7dccb587763cc34..59c326ab39662ee 100644 --- a/examples/with-firebase-hosting/package.json +++ b/examples/with-firebase-hosting/package.json @@ -10,7 +10,7 @@ "preserve": "npm run build-public && npm run build-funcs && npm run build-app && npm run copy-deps && npm run install-deps", "serve": "cross-env NODE_ENV=production firebase serve", "predeploy": "npm run build-public && npm run build-funcs && npm run build-app && npm run copy-deps", - "deploy": "firebase deploy", + "deploy": "NODE_ENV=production firebase deploy", "clean": "rimraf \"dist/functions/**\" && rimraf \"dist/public\"", "build-public": "cpx \"src/public/**/*.*\" \"dist/public\" -C", "build-funcs": "babel \"src/functions\" --out-dir \"dist/functions\"",