mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
21 lines
451 B
JavaScript
21 lines
451 B
JavaScript
module.exports = {
|
|
pwa: {
|
|
workboxPluginModule: 'GenerateSW',
|
|
workboxOptions: {
|
|
skipWaiting: true,
|
|
clientsClaim: true,
|
|
|
|
navigateFallback: '/index.html',
|
|
runtimeCaching: [
|
|
{
|
|
urlPattern: new RegExp('^https://stacjownik.eu-4.evennode.com/api/getSceneries'),
|
|
handler: 'NetworkFirst',
|
|
options: {
|
|
cacheName: 'sceneries-cache'
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
};
|