bang/frontend/vue.config.js
2023-01-27 15:20:30 +00:00

15 lines
230 B
JavaScript

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