import { createApp } from 'vue' import { createPinia } from 'pinia' /* IMPORTANT:ADMINFORTH IMPORTS */ import App from './App.vue' import router from './router' import { initI18n } from './i18n' export const app: ReturnType = createApp(App) /* IMPORTANT:ADMINFORTH COMPONENT REGISTRATIONS */ app.use(createPinia()) app.use(router) // get access to i18n instance outside components initI18n(app); /* IMPORTANT:ADMINFORTH CUSTOM USES */ app.mount('#app')