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