28 lines
589 B
TypeScript
28 lines
589 B
TypeScript
/*
|
|
Alpacca: The modern package repository hosting platform.
|
|
Copyright (C) 2025, Zervó Zadachin
|
|
|
|
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
The full copyright notice can be found at https://git.zervo.org/zervo/Alpacca/src/branch/main/COPYRIGHT.
|
|
*/
|
|
|
|
/* main.ts: Bootstraps Vuetify and other plugins then mounts the App */
|
|
|
|
// Composables
|
|
import { createApp } from 'vue'
|
|
|
|
// Plugins
|
|
import { registerPlugins } from '@/plugins'
|
|
|
|
// Components
|
|
import App from './App.vue'
|
|
|
|
// Styles
|
|
import 'unfonts.css'
|
|
|
|
const app = createApp(App)
|
|
|
|
registerPlugins(app)
|
|
|
|
app.mount('#app')
|