bang/frontend/vue.config.js
2020-12-13 17:37:44 +01:00

16 lines
276 B
JavaScript

const { GenerateSW } = require("workbox-webpack-plugin");
module.exports = {
pwa: {
name: 'PewPew!',
appleMobileWebAppCache: "yes",
manifestOptions: {
}
},
configureWebpack: {
plugins: [new GenerateSW()],
output: {
crossOriginLoading: 'anonymous'
},
}
};