ente/sentry.server.config.js

13 lines
418 B
JavaScript
Raw Normal View History

2021-06-07 10:45:46 +00:00
import * as Sentry from '@sentry/nextjs';
2021-06-16 07:40:42 +00:00
const SENTRY_DSN = process.env.NEXT_PUBLIC_SENTRY_DSN ?? 'https://860186db60c54c7fbacfe255124958e8@errors.ente.io/4';
const SENTRY_ENV = process.env.NEXT_PUBLIC_SENTRY_ENV ?? 'development';
2021-06-07 10:45:46 +00:00
Sentry.init({
dsn: SENTRY_DSN,
enabled: SENTRY_ENV !== 'development',
environment: SENTRY_ENV,
release: process.env.SENTRY_RELEASE,
autoSessionTracking: false,
2021-06-07 10:45:46 +00:00
});