splatoon3.ink/app/common/sentry.mjs
2024-03-17 10:20:17 -07:00

10 lines
172 B
JavaScript

import * as Sentry from '@sentry/node';
export function sentryInit() {
if (!process.env.SENTRY_DSN) {
return;
}
Sentry.init({ dsn: process.env.SENTRY_DSN });
}