2025-03-28 21:48:52 +01:00
|
|
|
import { createApp } from 'vue';
|
|
|
|
|
|
2025-08-05 16:39:57 +02:00
|
|
|
import '@fontsource/inter';
|
2025-03-28 21:48:52 +01:00
|
|
|
|
|
|
|
|
import i18n from './i18n.js';
|
|
|
|
|
import SetupAccount from './components/SetupAccount.vue';
|
|
|
|
|
|
|
|
|
|
import './style.css';
|
|
|
|
|
|
|
|
|
|
(async function init() {
|
|
|
|
|
const app = createApp(SetupAccount);
|
|
|
|
|
|
|
|
|
|
app.use(await i18n());
|
|
|
|
|
|
|
|
|
|
app.mount('#app');
|
|
|
|
|
})();
|