Update to latest vue defaults

This commit is contained in:
dragongoose
2023-11-30 20:22:47 -05:00
parent e272bacbf6
commit a0ecaab1e5
8 changed files with 1574 additions and 1397 deletions

View File

@ -4,7 +4,7 @@ import router from './router'
import './assets/index.css'
import i18n from './i18n'
const app = createApp(App).use(i18n)
const app = createApp(App)
// Add protocol variable
// For some reason, import.meta.env.VITE_HTTPS === "true"
@ -60,4 +60,5 @@ addIcons(
app.component('v-icon', OhVueIcon)
app.use(router)
app.use(i18n)
app.mount('#app')