2024-12-14 23:20:21 +01:00
|
|
|
import { createApp } from 'vue';
|
|
|
|
|
|
2025-08-05 16:39:57 +02:00
|
|
|
import '@fontsource/inter';
|
2025-03-19 18:04:17 +01:00
|
|
|
|
2024-12-14 23:20:21 +01:00
|
|
|
import i18n from './i18n.js';
|
2025-03-31 11:18:09 +02:00
|
|
|
import PasswordResetView from './views/PasswordResetView.vue';
|
2024-12-14 23:20:21 +01:00
|
|
|
|
2025-03-25 18:05:29 +01:00
|
|
|
import './style.css';
|
|
|
|
|
|
2024-12-14 23:20:21 +01:00
|
|
|
(async function init() {
|
2025-03-31 11:18:09 +02:00
|
|
|
const app = createApp(PasswordResetView);
|
2024-12-14 23:20:21 +01:00
|
|
|
|
|
|
|
|
app.use(await i18n());
|
|
|
|
|
|
|
|
|
|
app.mount('#app');
|
|
|
|
|
})();
|