Add tests && add img lazy async

This commit is contained in:
kwaroran
2025-04-14 15:28:14 +09:00
parent 666e1f71b0
commit 35f0f8e1dc
4 changed files with 23 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import "./ts/polyfill";
import "core-js/actual"
import "./ts/storage/database.svelte"
import {declareTest} from "./test/runTest"
import App from "./App.svelte";
import { loadData } from "./ts/globalApi.svelte";
import { initHotkey } from "./ts/hotkey";
@@ -13,6 +14,7 @@ let app = mount(App, {
});
loadData()
initHotkey()
declareTest()
document.getElementById('preloading').remove()
export default app;