aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTrae <trae@traeblain.com>2020-06-05 23:13:31 -0500
committerGitHub <noreply@github.com>2020-06-05 23:13:31 -0500
commitde0a746a27799c72a0fa7927259bda3382f71314 (patch)
tree1db488b47d3c3a76bdeb18007b2c93d3b693a1a8
parentc712d7c780a4e8d1ef2b67dc56b42ad979c36925 (diff)
downloadhomer-de0a746a27799c72a0fa7927259bda3382f71314.tar.gz
homer-de0a746a27799c72a0fa7927259bda3382f71314.tar.zst
homer-de0a746a27799c72a0fa7927259bda3382f71314.zip
Vue PWA Default Icon Paths are Incorrect
Corrected the icons due to the default iconPaths setting for Vue-PWA plugin is not where the icons actually are. This corrects issue.
-rw-r--r--vue.config.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/vue.config.js b/vue.config.js
index 3b104f7..ed0fa8c 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -8,6 +8,13 @@ module.exports = {
8 .end(); 8 .end();
9 }, 9 },
10 pwa: { 10 pwa: {
11 manifestPath: "assets/manifest.json" 11 manifestPath: "assets/manifest.json",
12 iconPaths: {
13 favicon32: 'assets/icons/favicon-32x32.png',
14 favicon16: 'assets/icons/favicon-16x16.png',
15 appleTouchIcon: 'assets/icons/apple-touch-icon-152x152.png',
16 maskIcon: 'assets/icons/safari-pinned-tab.svg',
17 msTileImage: 'assets/icons/msapplication-icon-144x144.png'
18 }
12 } 19 }
13}; 20};