From 2d9f83cfef519ef896f9c76bca74b4fbd5beac58 Mon Sep 17 00:00:00 2001 From: bach Date: Fri, 21 Mar 2025 23:00:44 +0100 Subject: [PATCH] added sentry test throw error --- src/App.vue | 5 ++++- src/main.js | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) 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()