Push useless update to fix cache failure on one device

This commit is contained in:
Fred Boniface 2023-11-24 12:41:55 +00:00
parent 2fc19dfab8
commit ceb8533154
2 changed files with 4 additions and 1 deletions

View File

@ -23,7 +23,8 @@
'<h3>Sorry</h3>' + '<h3>Sorry</h3>' +
'<p>The hardware behind OwlBoard has been upgraded and it will now be faster.<p>' + '<p>The hardware behind OwlBoard has been upgraded and it will now be faster.<p>' +
"<p>Unfortunately, you will need to <a href='/more/reg'>re-register</a>.</p>", "<p>Unfortunately, you will need to <a href='/more/reg'>re-register</a>.</p>",
"<p>Additional PIS Codes for LTV and Devon Metro services have been added too</p>" "<p>Additional PIS Codes for LTV and Devon Metro services have been added too</p>" +
"<p>More are being added all the time</p>"
]; ];
</script> </script>

View File

@ -3,6 +3,8 @@
import { build, files, version } from '$service-worker'; import { build, files, version } from '$service-worker';
const cacheName = `ob-${version}`; const cacheName = `ob-${version}`;
const pointlessConstant = true;
console.log(`pointlessContant is ${pointlessConstant}`)
const assets = [...build, ...files, '/service-worker.js']; const assets = [...build, ...files, '/service-worker.js'];