Rename manifest.json to manifest.webmanifest

This commit is contained in:
William Brawner 2022-02-04 21:17:08 -07:00
parent adcf571be4
commit d0f9d2426a
3 changed files with 4 additions and 4 deletions

View file

@ -5,9 +5,9 @@
<title>Pi-helper</title>
<meta charset="utf-8">
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="application-name" content="Twigs">
<link rel="manifest" href="manifest.json">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="application-name" content="Twigs">
<link rel="manifest" href="manifest.webmanifest">
<link rel="apple-touch-icon" href="/static/icons/icon-192x192.png">
<link rel="stylesheet" href="/static/css/style.css" />
<script type="text/javascript" src="/static/js/index.js"></script>

View file

@ -4,7 +4,7 @@
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "copyfiles -Ve src/** index.html manifest.json sw.js **/*.css **/*.png ../dist/public",
"prebuild": "copyfiles -Ve src/** index.html manifest.webmanifest sw.js **/*.css **/*.png ../dist/public",
"build": "tsc --project ./",
"test": "echo \"Error: no test specified\" && exit 1"
},