-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 830 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (26 loc) · 830 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
25
26
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>栾媛可视化服务器</title>
<script>
(function() {
var parts = location.href.split('/');
parts.pop();
var base = parts.join('/') + '/';
var link = document.createElement('link');
link.rel = 'icon';
link.type = 'image/x-icon';
link.href = base + 'favicon.ico';
document.head.appendChild(link);
})();
</script>
<link rel="icon" href="./favicon.ico" sizes="48x48" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>