Get working sentry for the UI
Previously it almost, but didn't quite work. Now it actually works, but the stack traces are minified.
This commit is contained in:
parent
2f6cbe59eb
commit
0c464a9963
6 changed files with 37 additions and 18 deletions
|
|
@ -1,8 +1,9 @@
|
|||
import { createApp } from "vue";
|
||||
import { createPinia } from "pinia";
|
||||
import App from "@/AppSync.vue";
|
||||
import router from "@/route/config";
|
||||
import * as config from "@/config";
|
||||
import router from "@/route/config";
|
||||
import * as sentry from "@/sentry";
|
||||
|
||||
import "maplibre-gl/dist/maplibre-gl.css";
|
||||
|
||||
|
|
@ -22,3 +23,4 @@ const app = createApp(App);
|
|||
app.use(pinia);
|
||||
app.use(router);
|
||||
app.mount("#app");
|
||||
sentry.Init(app, pinia);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue