Files
stacjownik/vue.config.js
T
2022-07-14 20:44:43 +02:00

21 lines
496 B
JavaScript

module.exports = {
pwa: {
workboxPluginModule: 'GenerateSW',
workboxOptions: {
navigateFallback: '/index.html',
runtimeCaching: [
{
urlPattern: new RegExp('^https://stacjownik.eu-4.evennode.com/api/getSceneries'),
handler: 'NetworkFirst',
options: {
cacheName: 'sceneries-cache',
expiration: {
maxAgeSeconds: 24 * 60 * 60, // 24 hours
},
},
},
],
},
},
};