mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-14 04:20:00 -04:00
29 lines
943 B
HTML
29 lines
943 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/logo.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="color-scheme" content="light dark" />
|
|
<title>Nebula</title>
|
|
<script src="/uv/uv.bundle.js"></script>
|
|
<script src="/uv/uv.config.js"></script>
|
|
<script src="/dynamic/dynamic.config.js"></script>
|
|
<script>
|
|
if ("serviceWorker" in navigator) {
|
|
window.addEventListener("load", () => {
|
|
navigator.serviceWorker.register("/uvsw.js", {
|
|
scope: __uv$config.prefix
|
|
});
|
|
navigator.serviceWorker.register("/dysw.js", {
|
|
scope: __dynamic$config.prefix
|
|
});
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/index.tsx"></script>
|
|
</body>
|
|
</html>
|