This commit is contained in:
2020-10-12 23:02:20 +00:00
parent 5e5b5c9368
commit 8fd703310f
5 changed files with 10 additions and 11 deletions

View File

@@ -19,9 +19,9 @@ todo: manifest / favicon convert to green/blue shirt from yellow
tiny icon used in windows when chrome install used tiny icon used in windows when chrome install used
no image at all used in Android when chrome install used no image at all used in Android when chrome install used
iPad: pending testing (charging iPad: pending testing (charging
todo: turn off generating map files in release build see if it's faster all around, maybe don't need them? todo: client build, turn off generating manifest.json as I have a static one already
`` one was 12mb for ts worker.map
todo: login, large view, branded logo and footer text not centered equally? todo: login, large view, branded logo and footer text not centered equally?

View File

@@ -4,13 +4,10 @@
<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="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.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="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" />
<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

@@ -1,4 +1,4 @@
export default { export default {
version: "8.0.0-alpha.75", version: "8.0.0-alpha.76",
copyright: "© 1999-2020, Ground Zero Tech-Works Inc." copyright: "© 1999-2020, Ground Zero Tech-Works Inc."
}; };

View File

@@ -26,8 +26,10 @@ module.exports = {
pwa: { pwa: {
//https://cli.vuejs.org/core-plugins/pwa.html#configuration //https://cli.vuejs.org/core-plugins/pwa.html#configuration
// manifestPath: "manifest.json",
name: "AyaNova", name: "AyaNova",
themeColor: "#00205B", themeColor: "#00205B",
msTileColor: "#ffc40d",
workboxPluginMode: "InjectManifest", workboxPluginMode: "InjectManifest",
workboxOptions: { workboxOptions: {
swSrc: "./src/sw.js", swSrc: "./src/sw.js",