15 lines
230 B
JavaScript
15 lines
230 B
JavaScript
module.exports = {
|
|
publicPath: "./",
|
|
pwa: {
|
|
name: 'Bang!',
|
|
appleMobileWebAppCache: "yes",
|
|
manifestOptions: {
|
|
display: 'standalone',
|
|
},
|
|
},
|
|
configureWebpack: {
|
|
output: {
|
|
crossOriginLoading: 'anonymous'
|
|
},
|
|
}
|
|
}; |