repod/src/main.ts
Michel Roux 3232723602
All checks were successful
repod / xml (push) Successful in 28s
repod / php (push) Successful in 1m8s
repod / nodejs (push) Successful in 1m43s
repod / release (push) Has been skipped
fix: 🚑 crash on firefox 115 (fix #158)
2024-10-18 14:41:47 +02:00

13 lines
282 B
TypeScript

import '@formatjs/intl-segmenter/polyfill'
import App from './App.vue'
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import router from './router.ts'
const Vue = createApp(App)
const pinia = createPinia()
Vue.use(pinia)
Vue.use(router)
Vue.mount('#content')