mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
21 lines
405 B
JavaScript
21 lines
405 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2024 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
self.addEventListener('install', () => {
|
|
self.skipWaiting();
|
|
});
|
|
|
|
self.addEventListener('activate', () => {
|
|
self.clients
|
|
.matchAll({
|
|
type: 'window',
|
|
})
|
|
.then(windowClients => {
|
|
windowClients.forEach(windowClient => {
|
|
windowClient.navigate(windowClient.url);
|
|
});
|
|
});
|
|
});
|