about summary refs log tree commit diff
path: root/src/env.ts
blob: 47bceac774d211c56f7c512b46b07d9ad7996e12 (plain) (blame)
1
2
3
4
5
6
7
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