19 lines
329 B
JavaScript
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'
|
|
},
|
|
}
|
|
}; |