about summary refs log tree commit diff
path: root/src/env.native.ts
blob: 581b211ca42f7ea72ca3e55f176cd593966cc961 (plain) (blame)
1
2
3
4
5
6
7
8
// @ts-ignore types not available -prf
import {REACT_APP_AUTH_LOBBY} from '@env'

if (typeof REACT_APP_AUTH_LOBBY !== 'string') {
  throw new Error('ENV: No auth lobby provided')
}

export const AUTH_LOBBY = REACT_APP_AUTH_LOBBY