forked from Maxluli/TinderPokemon
7 lines
239 B
JavaScript
7 lines
239 B
JavaScript
// This code executes in its own worker or thread
|
|
self.addEventListener("install", event => {
|
|
console.log("Service worker installed");
|
|
});
|
|
self.addEventListener("activate", event => {
|
|
console.log("Service worker activated");
|
|
}); |