ente/sentryConfigUtil.js

11 lines
305 B
JavaScript
Raw Normal View History

2022-01-07 12:47:24 +00:00
module.exports.isSentryEnabled = () => {
if (process.env.SENTRY_ENABLED) {
return process.env.SENTRY_ENABLED === 'yes';
} else {
if (process.env.NEXT_PUBLIC_SENTRY_ENV) {
return process.env.NEXT_PUBLIC_SENTRY_ENV !== 'development';
}
}
return false;
};