ente/apps/cast/sentryConfigUtil.js

12 lines
305 B
JavaScript
Raw Normal View History

2023-11-12 20:05:53 +00:00
const ENV_DEVELOPMENT = 'development';
module.exports.getIsSentryEnabled = () => {
if (process.env.NEXT_PUBLIC_SENTRY_ENV === ENV_DEVELOPMENT) {
return false;
} else if (process.env.NEXT_PUBLIC_DISABLE_SENTRY === 'true') {
return false;
} else {
return true;
}
};