2025-05-06 11:45:49 +02:00
|
|
|
import { createApp } from 'vue';
|
|
|
|
|
|
2025-08-05 16:39:57 +02:00
|
|
|
import '@fontsource/inter';
|
2025-05-06 11:45:49 +02:00
|
|
|
|
|
|
|
|
import i18n from './i18n.js';
|
|
|
|
|
import RestoreView from './views/RestoreView.vue';
|
|
|
|
|
|
|
|
|
|
import './style.css';
|
2025-08-07 16:21:29 +02:00
|
|
|
import './setup.css';
|
2025-05-06 11:45:49 +02:00
|
|
|
|
|
|
|
|
(async function init() {
|
|
|
|
|
const app = createApp(RestoreView);
|
|
|
|
|
|
|
|
|
|
app.use(await i18n());
|
|
|
|
|
|
|
|
|
|
app.mount('#app');
|
|
|
|
|
})();
|