From 6dc717dd6bdebbdc72f6993726dee657e9771353 Mon Sep 17 00:00:00 2001 From: bach Date: Tue, 24 Feb 2026 14:51:36 +0100 Subject: [PATCH] disabled sentry (glitchtip) --- src/main.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/main.js b/src/main.js index 2b936af..bd7cf5a 100644 --- a/src/main.js +++ b/src/main.js @@ -23,27 +23,27 @@ import 'vue-plyr/dist/vue-plyr.css' // integrations: [new Integrations.Vue()], // }); import * as Sentry from "@sentry/vue"; -import { createSentryPiniaPlugin } from "@sentry/vue"; +// import { createSentryPiniaPlugin } from "@sentry/vue"; const app = createApp(App) -Sentry.init({ - app, - dsn: "https://d1780f9da2fc4dd28c9c17cb344a088f@frontlog.figli.io/2", - integrations: [ - Sentry.browserTracingIntegration({ router }), - ], - tracesSampleRate: 0.01, - normalizeDepth: 10, // Or however deep you want your state context to be. - environment: "prod", - // release : '1' - release: __SENTRY_RELEASE__ -}); +// Sentry.init({ +// app, +// dsn: "https://d1780f9da2fc4dd28c9c17cb344a088f@frontlog.figli.io/2", +// integrations: [ +// Sentry.browserTracingIntegration({ router }), +// ], +// tracesSampleRate: 0.01, +// normalizeDepth: 10, // Or however deep you want your state context to be. +// environment: "prod", +// // release : '1' +// release: __SENTRY_RELEASE__ +// }); const pinia = createPinia() pinia.use( ({store}) => { store.router = router } ) -pinia.use(createSentryPiniaPlugin()); +// pinia.use(createSentryPiniaPlugin()); app.use(pinia) app.use(router)