mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-12 11:23:52 +02:00
27 lines
450 B
JavaScript
27 lines
450 B
JavaScript
import { createApp } from 'vue';
|
|
|
|
import {
|
|
i18n,
|
|
initComponents,
|
|
initPlugins,
|
|
initRouter,
|
|
initSentry
|
|
} from './plugin';
|
|
import { initPiniaPlugins, pinia } from './stores';
|
|
|
|
import App from './App.vue';
|
|
|
|
await initPlugins();
|
|
await initPiniaPlugins();
|
|
|
|
// #region | Hey look it's most of VRCX!
|
|
|
|
const app = createApp(App);
|
|
|
|
app.use(pinia).use(i18n);
|
|
initComponents(app);
|
|
initRouter(app);
|
|
await initSentry(app);
|
|
|
|
app.mount('#root');
|