mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-14 20:30:02 -04:00
25 lines
755 B
HTML
25 lines
755 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="/ultra/ultra.bundle.js"></script>
|
|
<script src="/ultra/ultra.config.js"></script>
|
|
<script>
|
|
if ("serviceWorker" in navigator) {
|
|
window.addEventListener("load", () => {
|
|
navigator.serviceWorker.register("/sw.js", {
|
|
scope: __uv$config.prefix
|
|
});
|
|
});
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/index.tsx"></script>
|
|
</body>
|
|
</html>
|