mirror of https://github.com/bastienwirtz/homer
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.pull/79/head
parent
c712d7c780
commit
de0a746a27
|
@ -8,6 +8,13 @@ module.exports = {
|
||||||
.end();
|
.end();
|
||||||
},
|
},
|
||||||
pwa: {
|
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'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue