2026-03-21 19:41:51 +00:00
|
|
|
import { createApp } from "vue";
|
2026-03-21 23:42:23 +00:00
|
|
|
import { createPinia } from "pinia";
|
2026-04-03 15:09:53 +00:00
|
|
|
import App from "@/AppSync.vue";
|
2026-04-22 14:31:05 +00:00
|
|
|
import router from "@/route/config";
|
2026-04-21 23:35:59 +00:00
|
|
|
import * as config from "@/config";
|
|
|
|
|
|
2026-03-21 19:41:51 +00:00
|
|
|
import "maplibre-gl/dist/maplibre-gl.css";
|
2026-03-21 17:44:14 +00:00
|
|
|
|
2026-03-21 19:34:23 +00:00
|
|
|
// Import Bootstrap Icons CSS
|
2026-03-21 19:41:51 +00:00
|
|
|
import "bootstrap-icons/font/bootstrap-icons.css";
|
2026-03-21 19:14:51 +00:00
|
|
|
// Import Bootstrap SCSS
|
2026-04-03 15:09:53 +00:00
|
|
|
import "@/style/style.scss";
|
2026-03-21 21:27:50 +00:00
|
|
|
// Import custom icons
|
2026-04-03 15:09:53 +00:00
|
|
|
import "@/gen/custom-icons.scss";
|
2026-03-21 19:14:51 +00:00
|
|
|
|
|
|
|
|
// Import Bootstrap JavaScript and make it available globally
|
2026-03-21 19:41:51 +00:00
|
|
|
import * as bootstrap from "bootstrap";
|
2026-03-21 19:14:51 +00:00
|
|
|
window.bootstrap = bootstrap;
|
|
|
|
|
|
2026-03-21 23:42:23 +00:00
|
|
|
const pinia = createPinia();
|
2026-03-21 21:58:02 +00:00
|
|
|
const app = createApp(App);
|
2026-03-21 23:42:23 +00:00
|
|
|
app.use(pinia);
|
2026-03-21 21:58:02 +00:00
|
|
|
app.use(router);
|
|
|
|
|
app.mount("#app");
|