-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 980 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#f5f5f2" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/png" sizes="256x256" href="/acecode-logo.png" />
<link rel="apple-touch-icon" href="/acecode-logo.png" />
<title>ACECode</title>
<!-- daemon 在嵌入时会做模板替换 ?v=__VERSION__ → git short hash;dev 模式下保留为字面 -->
<script>window.__ACECODE_VERSION__ = "__VERSION__";</script>
</head>
<body>
<noscript>
<div style="padding:2em;font-family:sans-serif">
本应用需要 JavaScript。请使用支持 ES Modules 的现代浏览器
(Chrome 100+ / Firefox 100+ / Safari 16+ / Edge 100+)。
</div>
</noscript>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>