Remove hardcoding as dev

This commit is contained in:
James Grugett 2022-03-15 16:53:33 -05:00
parent 112a0d6174
commit 9530e55988

View File

@ -2,7 +2,7 @@ import { DEV_CONFIG } from './dev'
import { EnvConfig, PROD_CONFIG } from './prod'
import { THEOREMONE_CONFIG } from './theoremone'
const ENV = 'DEV' // process.env.NEXT_PUBLIC_FIREBASE_ENV ?? 'PROD'
const ENV = process.env.NEXT_PUBLIC_FIREBASE_ENV ?? 'PROD'
const CONFIGS = {
PROD: PROD_CONFIG,