-
Notifications
You must be signed in to change notification settings - Fork 92
/
index.html
38 lines (37 loc) · 1.16 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TDesign Starter</title>
<meta name="description" content="React UI Component" />
<meta name="theme-color" content="#ffffff" />
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<meta name="msapplication-TileColor" content="#FFFFFF" />
<link rel="mask-icon" href="/favicon.svg" color="#FFFFFF" />
<!--[if IE]>
<style>
#app {
display: none;
}
</style>
<![endif]-->
</head>
<body>
<!--[if IE]>
<h1 style="position: absolute; width: 100%; text-align: center; top: 45%">
建议使用 <a href="https://www.google.cn/chrome/">Chrome</a>
</h1>
<![endif]-->
<td-horizon></td-horizon>
<td-aegis></td-aegis>
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
if (window.Cypress) {
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.parent.__REACT_DEVTOOLS_GLOBAL_HOOK__;
}
</script>
</body>
</html>