forked from nikita/muzika-gromche
19 lines
395 B
TypeScript
19 lines
395 B
TypeScript
/* eslint-disable perfectionist/sort-imports */
|
|
import { createPinia } from 'pinia'
|
|
import { createApp } from 'vue'
|
|
import { createHead } from '@unhead/vue/client'
|
|
|
|
import '@/style.css'
|
|
|
|
import App from '@/App.vue'
|
|
import { router } from '@/router'
|
|
|
|
const pinia = createPinia()
|
|
const head = createHead()
|
|
const app = createApp(App)
|
|
|
|
app.use(head)
|
|
app.use(pinia)
|
|
app.use(router)
|
|
app.mount('#app')
|