aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2020-06-06 15:33:44 -0700
committerGitHub <noreply@github.com>2020-06-06 15:33:44 -0700
commit51e02bed72896b94170c4e0d9878c58a4210143a (patch)
tree4a58fe2be69363135eac040b7af311ec214f3cbe
parent70121024542f7f831b5319309ce7b5008cae36b6 (diff)
parentde0a746a27799c72a0fa7927259bda3382f71314 (diff)
downloadhomer-51e02bed72896b94170c4e0d9878c58a4210143a.tar.gz
homer-51e02bed72896b94170c4e0d9878c58a4210143a.tar.zst
homer-51e02bed72896b94170c4e0d9878c58a4210143a.zip
Merge pull request #79 from traeblain/bugfix-icons127216760
Vue PWA Default Icon Paths are Incorrect
-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};