about summary refs log tree commit diff
path: root/src/env.ts
blob: 4d1b55a4eef6968a76f61f8bd8b00f71ebab5e44 (plain) (blame)
1
2
3
4
5
6
7
8
export const IS_DEV = __DEV__
export const IS_PROD = !IS_DEV
export const LOG_DEBUG = process.env.EXPO_PUBLIC_LOG_DEBUG || ''
export const LOG_LEVEL = (process.env.EXPO_PUBLIC_LOG_LEVEL || 'info') as
  | 'debug'
  | 'info'
  | 'warn'
  | 'error'