Skip to content

Commit

Permalink
Merge pull request #79 from traeblain/bugfix-icons
Browse files Browse the repository at this point in the history
Vue PWA Default Icon Paths are Incorrect
  • Loading branch information
bastienwirtz authored Jun 6, 2020
2 parents 7012102 + de0a746 commit 51e02be
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ module.exports = {
.end();
},
pwa: {
manifestPath: "assets/manifest.json"
manifestPath: "assets/manifest.json",
iconPaths: {
favicon32: 'assets/icons/favicon-32x32.png',
favicon16: 'assets/icons/favicon-16x16.png',
appleTouchIcon: 'assets/icons/apple-touch-icon-152x152.png',
maskIcon: 'assets/icons/safari-pinned-tab.svg',
msTileImage: 'assets/icons/msapplication-icon-144x144.png'
}
}
};

0 comments on commit 51e02be

Please sign in to comment.