fix(desktop): blank screen when starting (closes #2103)

This commit is contained in:
Elian Doran
2025-06-04 19:55:04 +03:00
parent 5fc8100c5d
commit 1818ae1f72
4 changed files with 40 additions and 30 deletions

View File

@@ -7,7 +7,8 @@ import { initializeTranslations } from "./services/i18n.js";
async function startApplication() {
await initializeTranslations();
await import("./www.js");
const startTriliumServer = (await import("./www.js")).default;
await startTriliumServer();
}
startApplication();