Fix top-level await in main.js #119

Merged
jakob.scheid merged 2 commits from chore/Old-browser-incompatibility into main 2026-06-19 14:59:28 +02:00
Showing only changes of commit 8a0d4ac949 - Show all commits
+2 -4
View File
@@ -23,13 +23,11 @@ import router from './router'
import './styles/common.css'
import './styles/variables/colors.css'
async function bootstrap() {
(async () => {
await loadLanguage(getCurrentLanguage())
createApp(App)
.use(router)
.use(i18n)
.mount('#app')
}
bootstrap()
})()