mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-04-22 07:28:49 -04:00
3 lines
113 B
TypeScript
3 lines
113 B
TypeScript
export const getLocalEnv = () => {
|
|
return (process.env.ENVIRONMENT?.toUpperCase() ?? 'DEV') as 'PROD' | 'DEV'
|
|
} |