-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.27 KB
/
Copy pathindex.html
File metadata and controls
33 lines (33 loc) · 1.27 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta name="theme-color" content="#1a1a2e" />
<link rel="icon" href="/favicon.ico" />
<title>节奏按摩引导器</title>
</head>
<body>
<div id="root">
<div id="root-fallback" style="display:flex;align-items:center;justify-content:center;height:100vh;background:#1a1a2e;color:#8888aa;font-family:sans-serif;text-align:center;">
<div>
<p style="font-size:20px;letter-spacing:4px;margin-bottom:8px;">节奏按摩引导器</p>
<p style="font-size:13px;">加载中...</p>
<p style="font-size:10px;color:rgba(255,255,255,0.1);margin-top:24px;">v3 · 进度条版</p>
</div>
</div>
</div>
<script>
// 清除旧版 Service Worker
if ('serviceWorker' in navigator) {
navigator.serviceWorker.getRegistrations().then(function(regs) {
regs.forEach(function(reg) { reg.unregister(); });
});
}
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>