2025-04-22 17:16:41 +03:00
|
|
|
/*
|
|
|
|
* Make sure not to import any modules that depend on localized messages via i18next here, as the initializations
|
|
|
|
* are loaded later and will result in an empty string.
|
2025-04-22 17:13:17 +03:00
|
|
|
*/
|
|
|
|
|
2025-04-22 17:16:41 +03:00
|
|
|
import { initializeTranslations } from "./services/i18n.js";
|
2025-04-22 17:13:17 +03:00
|
|
|
|
2025-04-22 17:16:41 +03:00
|
|
|
async function startApplication() {
|
2025-04-22 19:47:27 +03:00
|
|
|
await initializeTranslations();
|
2025-04-22 17:16:41 +03:00
|
|
|
await import("./www.js");
|
|
|
|
}
|
2025-04-22 17:13:17 +03:00
|
|
|
|
2025-04-22 19:47:27 +03:00
|
|
|
startApplication();
|