-
-
Notifications
You must be signed in to change notification settings - Fork 27k
Closed
Labels
Description
Currently the generated service worker workbox version is:
importScripts("https://storage.googleapis.com/workbox-cdn/releases/3.6.3/workbox-sw.js")
The latest is 4.1: see https://github.com/GoogleChrome/workbox/releases
The import can now read as:
importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.1.0/workbox-sw.js")
This update improves a number of things, including adding the much needed skipWaiting() message handler:
GoogleChrome/workbox#1929
idanwe, r0ughnex and ketysek