Init sentry first, then mount the app
Gets rid of a warning from the Sentry SDK
This commit is contained in:
parent
8757f1cda3
commit
503cde6063
1 changed files with 3 additions and 3 deletions
|
|
@ -15,6 +15,6 @@ const pinia = createPinia();
|
|||
app.use(head);
|
||||
app.use(pinia);
|
||||
app.use(router);
|
||||
app.mount("#app");
|
||||
|
||||
sentry.Init(app, pinia);
|
||||
sentry.Init(app, pinia).finally(() => {
|
||||
app.mount("#app");
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue