Move SENTRY_DSN to secrets

This commit is contained in:
Eric Bailey
2025-04-01 16:30:58 -05:00
parent 5aadb9e41b
commit 46b6ca9cfa
6 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ const dist = process.env.SENTRY_DIST || 'dev'
init({
enabled: !__DEV__,
autoSessionTracking: false,
dsn: 'https://8fb55ba4807fca137eedfc8403ee27ba@o4505071687041024.ingest.us.sentry.io/4508807082278912',
dsn: process.env.SENTRY_DSN,
debug: false, // If `true`, Sentry will try to print out useful debugging information if something goes wrong with sending the event. Set it to `false` in production
environment: process.env.NODE_ENV,
dist,