From 01e03558040903750643783cb243dd444f4f5b01 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Thu, 17 Feb 2022 16:49:59 -0600 Subject: [PATCH] Put back isProd calculation --- web/lib/firebase/init.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/lib/firebase/init.ts b/web/lib/firebase/init.ts index f92115d2..64e808de 100644 --- a/web/lib/firebase/init.ts +++ b/web/lib/firebase/init.ts @@ -1,7 +1,7 @@ import { getFirestore } from '@firebase/firestore' import { initializeApp, getApps, getApp } from 'firebase/app' -export const isProd = false // process.env.NEXT_PUBLIC_FIREBASE_ENV !== 'DEV' +export const isProd = process.env.NEXT_PUBLIC_FIREBASE_ENV !== 'DEV' const firebaseConfig = isProd ? {