bang/frontend/vue.config.js
2021-06-07 19:46:14 +02:00

19 lines
329 B
JavaScript

module.exports = {
publicPath: "./",
pwa: {
name: 'PewPew!',
appleMobileWebAppCache: "yes",
manifestOptions: {
display: 'standalone',
},
workboxPluginMode: 'InjectManifest',
workboxOptions: {
swSrc: 'src/service-worker.js'
}
},
configureWebpack: {
output: {
crossOriginLoading: 'anonymous'
},
}
};