streams/ServiceWorker.js

10 lines
262 B
JavaScript
Raw Normal View History

2021-08-22 21:22:47 +00:00
// This file should be served from the web root to avoid scope and cookie related issues with some browsers
self.addEventListener('install', function(e) {
console.log('install event');
});
self.addEventListener('fetch', function(e) {
// nothing here yet
2021-12-02 23:02:31 +00:00
2021-08-22 21:22:47 +00:00
});