bang/frontend/vue.config.js
2023-01-27 19:27:41 +00:00

20 lines
357 B
JavaScript

module.exports = {
publicPath: "./",
pwa: {
name: 'Bang!',
appleMobileWebAppCache: "yes",
manifestOptions: {
display: 'standalone',
},
workboxPluginMode: 'GenerateSW',
workboxOptions: {
navigateFallback: '/index.html',
cleanupOutdatedCaches: true,
}
},
configureWebpack: {
output: {
crossOriginLoading: 'anonymous'
},
}
};