diff options
Diffstat (limited to 'src/env.native.ts')
-rw-r--r-- | src/env.native.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/env.native.ts b/src/env.native.ts new file mode 100644 index 000000000..581b211ca --- /dev/null +++ b/src/env.native.ts @@ -0,0 +1,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 |