Notes/src/main.ts

14 lines
367 B
TypeScript
Raw Normal View History

/*
* 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.
*/
2024-09-08 17:40:05 +03:00
import { initializeTranslations } from "./services/i18n.js";
async function startApplication() {
await import("./www.js");
}
await initializeTranslations();
2024-12-22 15:45:54 +02:00
await startApplication();