forked from xjh22222228/boomb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.29 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
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.png" />
<meta name="author" content="https://github.com/xjh22222228">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Boomb</title>
<style>
.auth-loading {
z-index: 9;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #fff url("/auth-load.gif") no-repeat;
background-position: center;
background-size: 300px;
}
</style>
</head>
<body>
<div id="xiejiahe-app">
<div class="auth-loading"></div>
</div>
<script type="module" src="/src/main.ts"></script>
<script type="module">
var isDev = import.meta.env.DEV;
var _hmt = _hmt || [];
(function() {
if (isDev) {
return;
}
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?3c0f46f0611a38118c325f51cb183ad8";
hm.async = true
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</body>
</html>