-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (23 loc) · 1.02 KB
/
index.html
File metadata and controls
27 lines (23 loc) · 1.02 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OxideTerm</title>
<!-- 字体预取 - 低优先级提示,终端打开时按需使用 -->
<!-- JetBrains Mono - 主要等宽字体 -->
<link rel="prefetch" href="/fonts/JetBrainsMono/JetBrainsMonoNerdFontMono-Regular.woff2"
as="font" type="font/woff2" crossorigin />
<!-- Meslo - 备选等宽字体 -->
<link rel="prefetch" href="/fonts/Meslo/MesloLGMNerdFontMono-Regular.woff2"
as="font" type="font/woff2" crossorigin />
<!-- Maple Mono NF CN - CJK 字体 (仅 Regular,其他权重 requestIdleCallback 加载) -->
<link rel="prefetch" href="/fonts/MapleMono/MapleMono-NF-CN-Regular.woff2"
as="font" type="font/woff2" crossorigin />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>