ente/packages/shared/next/env.js

18 lines
394 B
JavaScript
Raw Normal View History

2023-11-09 04:10:43 +00:00
const ENV_DEVELOPMENT = 'development';
const ENV_PRODUCTION = 'production';
const ENV_TEST = 'test';
module.exports = {
ENV_DEVELOPMENT,
ENV_PRODUCTION,
ENV_TEST,
};
module.exports.getAppEnv = () => {
2023-11-18 10:01:25 +00:00
return process.env.NEXT_PUBLIC_APP_ENV ?? ENV_PRODUCTION;
2023-11-09 04:10:43 +00:00
};
module.exports.isDisableSentryFlagSet = () => {
return process.env.NEXT_PUBLIC_DISABLE_SENTRY === 'true';
2023-11-09 04:10:43 +00:00
};