From 9530e559880637ea9be9d324e685e621413e0dfe Mon Sep 17 00:00:00 2001 From: James Grugett Date: Tue, 15 Mar 2022 16:53:33 -0500 Subject: [PATCH] Remove hardcoding as dev --- 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 dff65467..b87948a7 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 = 'DEV' // process.env.NEXT_PUBLIC_FIREBASE_ENV ?? 'PROD' +const ENV = process.env.NEXT_PUBLIC_FIREBASE_ENV ?? 'PROD' const CONFIGS = { PROD: PROD_CONFIG,