set env to dev for user-testing purposes

This commit is contained in:
mantikoros 2022-03-10 16:32:50 -06:00
parent 7cc92b176f
commit beedbed6ff

View File

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