From 78b86a7c2864a30988a3f10b59d576e33d536b7c Mon Sep 17 00:00:00 2001 From: James Grugett Date: Wed, 16 Feb 2022 00:09:00 -0600 Subject: [PATCH] Always dev mode --- 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 64e808de..f92115d2 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 = process.env.NEXT_PUBLIC_FIREBASE_ENV !== 'DEV' +export const isProd = false // process.env.NEXT_PUBLIC_FIREBASE_ENV !== 'DEV' const firebaseConfig = isProd ? {