This commit is contained in:
Nikola Petrov
2026-09-08 23:02:12 +02:00
parent c5f04ddc7d
commit 7f36d6f37c
9 changed files with 397 additions and 2 deletions
+21
View File
@@ -0,0 +1,21 @@
import { createApp } from 'vue'
import { createRouter, createWebHashHistory } from 'vue-router'
import { routes, handleHotUpdate } from 'vue-router/auto-routes'
import App from './app.vue'
import '@fortawesome/fontawesome-free/css/all.min.css'
import 'bootstrap/dist/css/bootstrap.min.css'
import 'bootstrap/dist/js/bootstrap.bundle.min.js'
import 'vue-multiselect/dist/vue-multiselect.css';
const router = createRouter({
history: createWebHashHistory(),
routes,
})
if (import.meta.hot) {
handleHotUpdate(router)
}
createApp(App).use(router).mount('#app')