mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 23:45:11 +01:00
21 lines
324 B
TypeScript
21 lines
324 B
TypeScript
/**
|
|
* main.ts
|
|
*
|
|
* Bootstraps Vuetify and other plugins then mounts the App`
|
|
*/
|
|
|
|
// Plugins
|
|
import { registerPlugins } from '@/plugins'
|
|
import 'virtual:uno.css'
|
|
|
|
// Components
|
|
import App from './App.vue'
|
|
|
|
// Composables
|
|
import { createApp } from 'vue'
|
|
|
|
const app = createApp(App)
|
|
|
|
registerPlugins(app)
|
|
|
|
app.mount('#app')
|