From 0fd6811063d4ffa767a9743a964c3165bdb0c53b Mon Sep 17 00:00:00 2001 From: Michael Sprauer Date: Mon, 30 Mar 2020 22:08:05 +0200 Subject: [PATCH] fix sentry DSN in client --- client/src/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main.js b/client/src/main.js index 544b0f51..c403a990 100644 --- a/client/src/main.js +++ b/client/src/main.js @@ -21,7 +21,7 @@ Vue.config.productionTip = false; if (process.env.NODE_ENV != "development") { Sentry.init({ - dsn: 'https://fbc34fc7930a408c860ede02d9de000a@sentry.imis-prototyp.de/3', + dsn: 'https://d0517f472462409c99f7b82f571315f3@sentry.imis-prototyp.de/2', integrations: [new Integrations.Vue({Vue, attachProps: true})], }) }