rebuild finished for testing

This commit is contained in:
2024-01-23 21:28:20 +01:00
parent 7f98d3587d
commit 3c0981028c
21 changed files with 1712 additions and 0 deletions

20
frontend/src/main.ts Normal file
View File

@@ -0,0 +1,20 @@
/**
* main.ts
*
* Bootstraps Vuetify and other plugins then mounts the App`
*/
// Plugins
import { registerPlugins } from '@/plugins'
// Components
import App from './App.vue'
// Composables
import { createApp } from 'vue'
const app = createApp(App)
registerPlugins(app)
app.mount('#app')