mirror of
https://github.com/danbulant/design
synced 2026-07-05 19:10:47 +00:00
fix env
This commit is contained in:
parent
f59858c063
commit
36252ff3bb
1 changed files with 3 additions and 3 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue