add hostname to sentry init

This commit is contained in:
josephsmendoza
2024-10-01 00:47:50 -07:00
parent 2f8bcbb938
commit 3748956e5d
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -99,6 +99,7 @@
import('https://cdn.jsdelivr.net/npm/@sentry/browser@8/+esm').then(sentry=>{ import('https://cdn.jsdelivr.net/npm/@sentry/browser@8/+esm').then(sentry=>{
sentry.init({ sentry.init({
dsn:'https://f5fe0dec9f2f42dc80153b67e7e00dd0@app.glitchtip.com/8359', dsn:'https://f5fe0dec9f2f42dc80153b67e7e00dd0@app.glitchtip.com/8359',
environment:location.hostname,
integrations: [ integrations: [
sentry.feedbackIntegration({colorScheme:"light"}) sentry.feedbackIntegration({colorScheme:"light"})
] ]
+2 -1
View File
@@ -1,6 +1,7 @@
import('https://cdn.jsdelivr.net/npm/@sentry/browser@8/+esm').then(sentry=>{ import('https://cdn.jsdelivr.net/npm/@sentry/browser@8/+esm').then(sentry=>{
sentry.init({ sentry.init({
dsn:'https://f5fe0dec9f2f42dc80153b67e7e00dd0@app.glitchtip.com/8359' dsn:'https://f5fe0dec9f2f42dc80153b67e7e00dd0@app.glitchtip.com/8359',
environment:location.hostname,
}) })
}).catch(e=>{ }).catch(e=>{
console.warn('automatic error reporting failed to load',e) console.warn('automatic error reporting failed to load',e)