You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
335 B
11 lines
335 B
self.addEventListener('install', async (event) => { |
|
// Activate the service worker immediately after install |
|
await self.skipWaiting(); |
|
}); |
|
|
|
self.addEventListener('activate', (event) => { |
|
// Take control of all clients immediately |
|
event.waitUntil(self.clients.claim()); |
|
}); |
|
|
|
// No fetch or cache handlers — fully fall-through
|
|
|