systemquery/src/static/app.mjs

11 lines
286 B
JavaScript

import __INDEX__ from "./index.html";
import make_router from './js/routes_client.mjs';
window.addEventListener("load", (_event) => {
globalThis[Symbol("__INDEX__")] = __INDEX__;
globalThis.sysquery_router = make_router();
globalThis.sysquery_router.navigate_current_hash();
});