ente/sentry.server.config.js

13 lines
368 B
JavaScript
Raw Normal View History

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