19 lines
399 B
TypeScript
19 lines
399 B
TypeScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import './styles/tokens.css'
|
|
import './styles/features.css'
|
|
import { useThemeStore } from './stores/theme'
|
|
|
|
const app = createApp(App)
|
|
const pinia = createPinia()
|
|
|
|
app.use(pinia)
|
|
app.use(router)
|
|
|
|
const themeStore = useThemeStore()
|
|
themeStore.initTheme()
|
|
|
|
app.mount('#app')
|