diff --git a/src/App.vue b/src/App.vue index 54b04c3..05e05f9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -21,8 +21,11 @@ export default { } }, created () { - this.loadContentTypeDefinition(); + this.loadContentTypeDefinition() this.loadConcernements() + setTimeout(()=>{ + throw new Error("sentry test error"); + }) }, mounted () { console.log('APP onMounted') diff --git a/src/main.js b/src/main.js index 0858a7a..3620a22 100644 --- a/src/main.js +++ b/src/main.js @@ -37,7 +37,7 @@ Sentry.init({ tracesSampleRate: 0.01, normalizeDepth: 10, // Or however deep you want your state context to be. environment: "prod", - release : '1' + // release : '1' }); const pinia = createPinia()