2026-04-03 15:02:37 +00:00
|
|
|
import { createApp } from "vue";
|
|
|
|
|
import { createHead } from "@vueuse/head";
|
2026-04-03 18:28:41 +00:00
|
|
|
import { createPinia } from "pinia";
|
2026-04-07 16:25:14 +00:00
|
|
|
import "bootstrap-icons/font/bootstrap-icons.css";
|
2026-04-03 16:00:50 +00:00
|
|
|
import "@/gen/custom-icons.scss";
|
|
|
|
|
import "@/style/rmo.scss";
|
2026-04-22 14:31:05 +00:00
|
|
|
import router from "@/rmo/route/config";
|
2026-04-03 15:43:44 +00:00
|
|
|
import App from "@/rmo/App.vue";
|
2026-04-29 23:59:34 +00:00
|
|
|
import * as sentry from "@/sentry";
|
2026-04-03 15:02:37 +00:00
|
|
|
|
|
|
|
|
const app = createApp(App);
|
|
|
|
|
const head = createHead();
|
2026-04-03 18:28:41 +00:00
|
|
|
const pinia = createPinia();
|
2026-04-03 15:02:37 +00:00
|
|
|
|
|
|
|
|
app.use(head);
|
2026-04-03 18:28:41 +00:00
|
|
|
app.use(pinia);
|
2026-04-03 15:43:44 +00:00
|
|
|
app.use(router);
|
2026-05-01 01:52:44 +00:00
|
|
|
sentry.Init(app, pinia).finally(() => {
|
|
|
|
|
app.mount("#app");
|
|
|
|
|
});
|