-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
25 lines (24 loc) · 987 Bytes
/
index.html
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
<!doctype html>
<html lang="zh-Hans-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="prefetch" href="/cache/repertoire.json" as="fetch" />
<link rel="prefetch" href="/cache/dictionary.txt" as="fetch" />
<link rel="prefetch" href="/cache/word_frequency.txt" as="fetch" />
<link rel="prefetch" href="/cache/character_frequency.txt" as="fetch" />
<link rel="prefetch" href="/cache/pair_equivalence.txt" as="fetch" />
<link rel="prefetch" href="/cache/key_distribution.txt" as="fetch" />
<link rel="prefetch" href="/cache/key_distribution.txt" as="fetch" />
<link rel="prefetch" href="/cache/tygf.txt" as="fetch" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
/>
<title>汉字自动拆分系统</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>