We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a6fd79 commit 4578572Copy full SHA for 4578572
core/frontend/src/main.ts
@@ -38,9 +38,10 @@ Vue.prototype.$tours = {}
38
const project = 'BlueOS'
39
// Avoid logging local development
40
const version = import.meta.env.VITE_APP_GIT_DESCRIBE
41
+const isOfficialTag = version?.includes('tags/')
42
const release = `${project}@${version}`.replace('tags/', '').replace(/\//g, ':')
43
console.info(`Running: ${release}`)
-if (version) {
44
+if (version && isOfficialTag) {
45
Sentry.init({
46
Vue,
47
release,
0 commit comments