mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-16 21:10:02 -04:00
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script src="/epoxy/index.js" defer></script>
|
|
<script src="/libcurl/index.cjs" defer></script>
|
|
<script src="/uv/uv.bundle.js" defer></script>
|
|
<script src="/uv/uv.config.js" defer></script>
|
|
<script src="/dynamic/dynamic.config.js" defer></script>
|
|
<script src="/localforage/localforage.min.js" defer></script>
|
|
<script defer>
|
|
if ("serviceWorker" in navigator) {
|
|
window.addEventListener("load", () => {
|
|
navigator.serviceWorker.register("/sw.js", {
|
|
scope: "/~/"
|
|
});
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
<body style="margin: 0">
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/index.tsx"></script>
|
|
<script>
|
|
if (
|
|
new URL(Object.assign(document.createElement("a"), { href: "/" }).href)
|
|
.password
|
|
)
|
|
window.location.href = window.location.href;
|
|
</script>
|
|
<!-- ONLY ENABLE IF USING MASQR!
|
|
<script>
|
|
if (!localStorage["auth"] && new URL(document.all.rcheck.href).password) {
|
|
window.location.reload();
|
|
localStorage["auth"] = 1;
|
|
}
|
|
</script>
|
|
-->
|
|
</body>
|
|
</html>
|