-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.03 KB
/
index.html
File metadata and controls
37 lines (36 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>.dir</title>
<style>
html,
body,
#app {
width: 100%;
height: 100%;
overflow: hidden;
overscroll-behavior: none;
}
</style>
<script>
window.__DOTDIR_BOOT_MARKER__ = [];
window.__dotdirBoot = function (message) {
try {
window.__DOTDIR_BOOT_MARKER__.push(message);
var el = document.getElementById("boot-status");
if (el) el.textContent = message;
} catch (_) {}
};
window.__dotdirBoot(".dir HTML loaded");
</script>
</head>
<body style="margin: 0; padding: 0">
<div id="boot-status" style="padding: 16px; font-family: Consolas, monospace; font-size: 14px; color: #f38ba8; background: #1e1e2e; min-height: 100vh">
Starting .dir...
</div>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>