mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-02-27 14:23:40 +00:00
38 lines
795 B
TypeScript
38 lines
795 B
TypeScript
import './assets/main.css'
|
|
|
|
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import { createHead } from '@unhead/vue'
|
|
|
|
import 'vuetify/styles'
|
|
import { createVuetify } from 'vuetify'
|
|
import * as components from 'vuetify/components'
|
|
import * as directives from 'vuetify/directives'
|
|
import '@mdi/font/css/materialdesignicons.css' // Ensure you are using css-loader
|
|
|
|
const vuetify = createVuetify({
|
|
components,
|
|
directives,
|
|
theme: {
|
|
defaultTheme: 'light',
|
|
themes: {
|
|
light: {
|
|
colors: {
|
|
background: '#f5f5f5',
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
const pinia = createPinia()
|
|
const app = createApp(App)
|
|
app.use(createHead())
|
|
app.use(router)
|
|
app.use(vuetify)
|
|
app.use(pinia)
|
|
|
|
app.mount('#app')
|