There was an error while loading. Please reload this page.
1 parent c3f2105 commit a84ad62Copy full SHA for a84ad62
1 file changed
common/src/envs/constants.ts
@@ -5,7 +5,6 @@ import {
5
IS_LOCAL_ANDROID,
6
IS_WEBVIEW_DEV_PHONE,
7
} from 'common/hosting/constants'
8
-import {debug} from 'common/logger'
9
10
import {DEV_CONFIG} from './dev'
11
import {PROD_CONFIG} from './prod'
@@ -49,7 +48,7 @@ console.debug(`Running in ${HOSTING_ENV} (${ENV})`)
49
48
// }
50
51
export const IS_FIREBASE_EMULATOR = process.env.NEXT_PUBLIC_FIREBASE_EMULATOR === 'true'
52
-if (IS_FIREBASE_EMULATOR) debug('Using Firebase emulator.')
+if (IS_FIREBASE_EMULATOR) console.debug('Using Firebase emulator.')
53
54
export const LOCAL_WEB_DOMAIN = `localhost:3000`
55
export const LOCAL_BACKEND_DOMAIN = `${IS_WEBVIEW_DEV_PHONE ? '192.168.1.3' : IS_LOCAL_ANDROID ? '10.0.2.2' : 'localhost'}:8088`
0 commit comments