This commit is contained in:
Daniel Bulant 2022-12-12 13:30:03 +01:00
parent f59858c063
commit 36252ff3bb

View file

@ -9,9 +9,9 @@
if (browser && !dev) {
Sentry.init({
dsn: process.env.SENTRY_DSN,
environment: process.env.SENTRY_ENVIRONMENT,
release: process.env.SENTRY_RELEASE,
dsn: import.meta.env.VITE_SENTRY_DSN,
environment: import.meta.env.VITE_SENTRY_ENVIRONMENT,
release: import.meta.env.VITE_SENTRY_RELEASE,
});
}
</script>