From fc9d6a5e0e873727b8edfab8f523b94af494d86c Mon Sep 17 00:00:00 2001 From: stryder03 Date: Fri, 31 Jan 2020 12:50:28 -0700 Subject: [PATCH] added fix for https://github.com/zeit/next.js/issues/8893 --- 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 7dccb587763cc..59c326ab39662 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\"",