2023-12-19 17:40:02 +01:00
|
|
|
import "./assets/style.css";
|
|
|
|
|
|
|
|
import { createApp } from "vue";
|
|
|
|
import { createPinia } from "pinia";
|
2023-12-20 03:24:38 +01:00
|
|
|
import { i18n } from "./i18n";
|
2023-12-19 17:40:02 +01:00
|
|
|
|
|
|
|
import App from "./App.vue";
|
|
|
|
import router from "./router";
|
2023-12-20 17:13:48 +01:00
|
|
|
import { useInstanceStore } from "./stores/instance";
|
2023-12-19 17:40:02 +01:00
|
|
|
|
|
|
|
const app = createApp(App);
|
|
|
|
|
|
|
|
app.use(createPinia());
|
|
|
|
app.use(router);
|
2023-12-20 03:24:38 +01:00
|
|
|
app.use(i18n);
|
2023-12-19 17:40:02 +01:00
|
|
|
|
2023-12-20 17:13:48 +01:00
|
|
|
useInstanceStore().fetchInstance();
|
|
|
|
|
2023-12-19 17:40:02 +01:00
|
|
|
app.mount("#app");
|