VUE_GabenParadise/vue.config.js

18 lines
493 B
JavaScript
Raw Normal View History

2020-08-10 12:35:19 +00:00
module.exports = {
pwa: {
2020-08-28 16:10:04 +00:00
name: "Gaben Paradise",
workboxPluginMode: "InjectManifest",
themeColor: "#0a0a0a",
workboxOptions: {
2020-08-10 12:35:19 +00:00
swSrc: "src/service-worker.js"
},
iconPaths: {
2020-08-28 16:10:04 +00:00
favicon32: "img/icons/favicon-32x32.png",
favicon16: "img/icons/favicon-16x16.png",
appleTouchIcon: "img/icons/apple-touch-icon-152x152.png",
maskIcon: "img/icons/safari-pinned-tab.svg",
msTileImage: "img/icons/msapplication-icon-144x144.png"
2020-08-10 12:35:19 +00:00
}
}
2020-08-28 16:10:04 +00:00
};