You've already forked AstralRinth
forked from didirus/AstralRinth
* initial fixes * 0.8.0 beta fixes * run actions * run fmt * Fix windows build * Add purge cache opt * add must revalidate to project req * lint + clippy * fix processes, open folder * Update migrator to use old launcher cache for perf * fix empty dirs not moving * fix lint + create natives dir if not exist * fix large request batches * finish * Fix deep linking on mac * fix comp err * fix comp err (2) --------- Signed-off-by: Geometrically <18202329+Geometrically@users.noreply.github.com>
37 lines
756 B
JavaScript
37 lines
756 B
JavaScript
import { createApp } from 'vue'
|
|
import router from '@/routes'
|
|
import App from '@/App.vue'
|
|
import { createPinia } from 'pinia'
|
|
import FloatingVue from 'floating-vue'
|
|
import 'floating-vue/dist/style.css'
|
|
import loadCssMixin from './mixins/macCssFix.js'
|
|
import { createPlugin } from '@vintl/vintl/plugin'
|
|
|
|
const VIntlPlugin = createPlugin({
|
|
controllerOpts: {
|
|
defaultLocale: 'en-US',
|
|
locale: 'en-US',
|
|
locales: [
|
|
{
|
|
tag: 'en-US',
|
|
meta: {
|
|
displayName: 'American English',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
globalMixin: true,
|
|
injectInto: [],
|
|
})
|
|
|
|
const pinia = createPinia()
|
|
|
|
let app = createApp(App)
|
|
app.use(router)
|
|
app.use(pinia)
|
|
app.use(FloatingVue)
|
|
app.mixin(loadCssMixin)
|
|
app.use(VIntlPlugin)
|
|
|
|
app.mount('#app')
|