[Build] enable site pwa (#3736)

This commit is contained in:
neverland
2019-07-03 16:10:45 +08:00
committed by GitHub
parent 66459df72a
commit 3dd881a84d
14 changed files with 357 additions and 191 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

View File

@@ -1,14 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover">
<link rel="shortcut icon" href="https://img.yzcdn.cn/zanui/vant/vant-2017-12-18.ico">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover"
/>
<link
rel="shortcut icon"
href="https://img.yzcdn.cn/zanui/vant/vant-2017-12-18.ico"
/>
<link href="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.css" rel="stylesheet" />
<title>Vant - 轻量、可靠的移动端 Vue 组件库</title>
</head>
<body ontouchstart>
<div id="app"></div>
<script src="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.js"></script>
<!-- built files will be auto injected -->
</body>
</html>

20
site/public/manifest.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "Vant",
"short_name": "Vant",
"icons": [
{
"src": "./img/icons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "./img/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"start_url": "./index.html",
"display": "standalone",
"background_color": "#000000",
"theme_color": "#4DBA87"
}

20
site/public/mobile.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover"
/>
<link
rel="shortcut icon"
href="https://img.yzcdn.cn/zanui/vant/vant-2017-12-18.ico"
/>
<title>Vant - 轻量、可靠的移动端 Vue 组件库</title>
</head>
<body ontouchstart>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>