mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-04-22 01:27:51 -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 });
|
|
}
|