diff --git a/src/utils/defaults.js b/src/utils/defaults.js index 677f27e9..738a37dc 100644 --- a/src/utils/defaults.js +++ b/src/utils/defaults.js @@ -317,7 +317,6 @@ module.exports = { /* Progressive Web App settings, used by Vue Config */ pwa: { name: 'Dashy', - manifestPath: './manifest.json', themeColor: '#00af87', msTileColor: '#0b1021', mode: 'production', @@ -329,5 +328,14 @@ module.exports = { maskIcon: './web-icons/dashy-logo.png', msTileImage: './web-icons/dashy-logo.png', }, + workboxOptions: { + exclude: [ + // https://developer.chrome.com/docs/workbox/modules/workbox-build#properties_14 + /\.map$/, + /^manifest.*\.js$/, // default value + /\.nojekyll$/, + /\.gitignore$/, + ], + }, }, };