You've already forked AstralRinth
forked from didirus/AstralRinth
* jre async * mac support * fixed some settings not being saved to file * fixed older version of mac random crashing bug * added specific mac version detection * linux support for jre changes * added app storage options * tauri features change * dependency fix * removed debug statement * restructured to not pass css through rust * changed to os_info * rerun cicd
18 lines
557 B
JavaScript
18 lines
557 B
JavaScript
import { createApp } from 'vue'
|
|
import router from '@/routes'
|
|
import App from '@/App.vue'
|
|
import { createPinia } from 'pinia'
|
|
import '../node_modules/omorphia/dist/style.css'
|
|
import '@/assets/stylesheets/global.scss'
|
|
import FloatingVue from 'floating-vue'
|
|
import { initialize_state } from '@/helpers/state'
|
|
import loadCssMixin from './mixins/macCssFix.js'
|
|
|
|
const pinia = createPinia()
|
|
|
|
initialize_state()
|
|
.then(() => {
|
|
createApp(App).use(router).use(pinia).use(FloatingVue).mixin(loadCssMixin).mount('#app')
|
|
})
|
|
.catch((err) => console.error(err))
|