Files
t8y2--dbx/apps/desktop/index.html
T
2026-07-13 13:09:14 +08:00

29 lines
703 B
HTML

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DBX</title>
</head>
<body>
<div id="root">
<style>
#root:empty {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
font-family: system-ui, sans-serif;
color: #888;
font-size: 13px;
}
#root:empty::after {
content: "Loading…";
}
</style>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>