From beedbed6ff2b94aabb18d6b620a8c2126803290b Mon Sep 17 00:00:00 2001 From: mantikoros Date: Thu, 10 Mar 2022 16:32:50 -0600 Subject: [PATCH] set env to dev for user-testing purposes --- common/envs/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/envs/constants.ts b/common/envs/constants.ts index b87948a7..dff65467 100644 --- a/common/envs/constants.ts +++ b/common/envs/constants.ts @@ -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,