From a8caca2f7f8ea22e58b786705713675718df6901 Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Mon, 13 Apr 2020 22:31:50 -0700 Subject: [PATCH] Added check to see environment variables in prod --- client/src/firebase/firebase.utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/firebase/firebase.utils.js b/client/src/firebase/firebase.utils.js index 4b1cea785..3d07894bc 100644 --- a/client/src/firebase/firebase.utils.js +++ b/client/src/firebase/firebase.utils.js @@ -4,6 +4,7 @@ import "firebase/auth"; import "firebase/database"; import "firebase/analytics"; +console.log("REACT_APP_FIREBASE_CONFIG", process.env.REACT_APP_FIREBASE_CONFIG); const config = JSON.parse(process.env.REACT_APP_FIREBASE_CONFIG); firebase.initializeApp(config);