Skip to content

Commit ffc0686

Browse files
authored
fix: fix pwa installability by adding fetch event listener to noopServiceWorker (#5327)
currently google chrome prevents installing pwa due to the error: “Page does not work offline”. The reason is service worker has to listen to fetch event. It doesnt have to do anything so the listener can be an empty function, but it has to be declared
1 parent 4549bde commit ffc0686

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/@vue/cli-plugin-pwa/lib/noopServiceWorker.js

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
self.addEventListener('install', () => self.skipWaiting())
1414

15+
self.addEventListener('fetch', () => {})
16+
1517
self.addEventListener('activate', () => {
1618
self.clients.matchAll({ type: 'window' }).then(windowClients => {
1719
for (const windowClient of windowClients) {

0 commit comments

Comments
 (0)