forked from pengfu/vue-2048
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
34 lines (34 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon/favicon-16x16.png" sizes="16x16" />
<link rel="icon" href="/favicon/favicon-32x32.png" sizes="32x32" />
<link
rel="apple-touch-icon"
href="/favicon/apple-touch-icon.png"
sizes="180x180"
/>
<link
rel="mask-icon"
href="/favicon/maskable-192x192.png"
color="#ffffff"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta http-equiv="Content-Type" content="text/css" />
<meta http-equiv="Content-Type" content="text/javascript" />
<meta name="description" content="Blue Archive Story Viewer" />
<meta
name="keywords"
content="blue archive, 小春, 下江小春, 游戏, 碧蓝档案, 2048, 小春2048"
/>
<meta name="theme-color" content="#ffffff" />
<title>koharu 2048</title>
<script src="/js/c_expectimax.js"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>