mirror of
https://github.com/bastienwirtz/homer.git
synced 2024-11-07 16:54:00 +01:00
de0a746a27
Corrected the icons due to the default iconPaths setting for Vue-PWA plugin is not where the icons actually are. This corrects issue.
21 lines
552 B
JavaScript
21 lines
552 B
JavaScript
module.exports = {
|
|
chainWebpack: (config) => {
|
|
config.module
|
|
.rule("yaml")
|
|
.test(/\.ya?ml$/)
|
|
.use("raw-loader")
|
|
.loader("raw-loader")
|
|
.end();
|
|
},
|
|
pwa: {
|
|
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'
|
|
}
|
|
}
|
|
};
|