This commit is contained in:
2020-10-12 21:18:12 +00:00
parent 4cbcdd4aae
commit 26f50a7045
13 changed files with 32 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -3,7 +3,7 @@
<msapplication> <msapplication>
<tile> <tile>
<square150x150logo src="/mstile-150x150.png"/> <square150x150logo src="/mstile-150x150.png"/>
<TileColor>#da532c</TileColor> <TileColor>#ffc40d</TileColor>
</tile> </tile>
</msapplication> </msapplication>
</browserconfig> </browserconfig>

Binary file not shown.

After

Width:  |  Height:  |  Size: 561 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 949 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -4,8 +4,13 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" /> <meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" sizes="192x192" href="./img/icons/icon.png" /> <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="apple-touch-icon" href="./img/icons/ios-icon.png" /> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#00205b">
<meta name="msapplication-TileColor" content="#ffc40d">
<meta name="theme-color" content="#7f9fda">
<title>AyaNova</title> <title>AyaNova</title>
</head> </head>
<body> <body>

View File

@@ -65,6 +65,6 @@
], ],
"start_url": "/", "start_url": "/",
"display": "standalone", "display": "standalone",
"background_color": "#000000", "background_color": "#ffffff",
"theme_color": "#4DBA87" "theme_color": "#00205B"
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,20 @@
{
"name": "AyaNova",
"short_name": "AyaNova",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"start_url": "/",
"theme_color": "#7f9fda",
"background_color": "#7f9fda",
"display": "standalone"
}

View File

@@ -27,7 +27,7 @@ module.exports = {
pwa: { pwa: {
//https://cli.vuejs.org/core-plugins/pwa.html#configuration //https://cli.vuejs.org/core-plugins/pwa.html#configuration
name: "AyaNova", name: "AyaNova",
themeColor: "#db7022", themeColor: "#00205B",
workboxPluginMode: "InjectManifest", workboxPluginMode: "InjectManifest",
workboxOptions: { workboxOptions: {
swSrc: "./src/sw.js", swSrc: "./src/sw.js",