mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-03-22 02:04:18 -05:00
10 lines
172 B
JavaScript
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 });
|
|
}
|