21 lines
380 B
JavaScript
21 lines
380 B
JavaScript
const { GenerateSW } = require("workbox-webpack-plugin");
|
|
|
|
module.exports = {
|
|
publicPath: "./",
|
|
pwa: {
|
|
name: 'PewPew!',
|
|
appleMobileWebAppCache: "yes",
|
|
manifestOptions: {
|
|
}
|
|
},
|
|
configureWebpack: {
|
|
plugins: [new GenerateSW({
|
|
clientsClaim: true,
|
|
skipWaiting: true,
|
|
navigateFallback: 'index.html',
|
|
})],
|
|
output: {
|
|
crossOriginLoading: 'anonymous'
|
|
},
|
|
}
|
|
}; |