@nitra/vite-boot 1.0.15 → 1.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/sentry.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nitra/vite-boot",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "Vite boot",
5
5
  "type": "module",
6
6
  "exports": {
package/src/sentry.js CHANGED
@@ -23,7 +23,7 @@ export const bootSentry = (app, router) => {
23
23
 
24
24
  // Якщо публікація з різних гілок
25
25
  // записуємо в різні енв для фільтрації в сентрі
26
- if (__BRANCH__) {
26
+ if (typeof __BRANCH__ !== 'undefined') {
27
27
  options.environment = __BRANCH__
28
28
  }
29
29