-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 991 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (21 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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 name="theme-color" content="#08090C" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="DispatchFlow" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/icons/icon-192x192.svg" />
<title>DispatchFlow 无人车调度平台</title>
<!-- P0-1: 字体改为自托管(@fontsource),移除 Google Fonts CDN 引用,消除 CSP 违规 -->
<!-- P2-5: 状态栏改为 black(避免 black-translucent 导致内容被状态栏遮挡) -->
</head>
<body>
<div id="app"></div>
<script src="/runtime-config.js"></script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>