Point local server to prod Firebase for now

This commit is contained in:
Austin Chen 2021-12-29 22:51:41 -08:00
parent b06d41e31a
commit 307bd5e107

View File

@ -1,7 +1,9 @@
import { getFirestore } from '@firebase/firestore'
import { initializeApp } from 'firebase/app'
export const isProd = process.env.NODE_ENV === 'production'
// TODO: Reenable this when we have a way to set the Firebase db in dev
// export const isProd = process.env.NODE_ENV === 'production'
export const isProd = true
const firebaseConfig = isProd
? {