-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (27 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Ok Cool">
<title>amp-pwa-vue</title>
<link rel="shortcut icon" href="./src/assets/icons/favicon.ico" type="image/x-icon"/>
<link rel="icon" href="./src/assets/icons/favicon.ico" type="image/ico"/>
<!-- MANIFEST -->
<link rel="manifest" href="./manifest.json">
<!-- ADD TO HOMESCREEN SAFARI ON IOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Simple PWA">
<link rel="apple-touch-icon" href="./src/assets/icons/icon-152.png">
<!-- ADD TO HOMESCREEN WINDOWS -->
<meta name="msapplicatoin-TileImage" content="./src/assets/icons/icon-144.png">
<meta name="msapplicatoin-TileColor" content="#3d5165">
</head>
<body>
<div id="app"></div>
<script src="/dist/build.js"></script>
<script src="./cache.js"></script>
</body>
</html>