- From: Jake Archibald <notifications@github.com>
- Date: Fri, 17 Apr 2020 02:29:11 -0700
- To: w3c/ServiceWorker <ServiceWorker@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 17 April 2020 09:29:24 UTC
As a compatibility path, what if `id` defaults to the scope? ```js // Past me did this: await navigation.serviceWorker.register('/sw.js', { scope: '/product/bar', }); // But it's ok, I can move it: await navigation.serviceWorker.register('/sw.js', { scope: '/bar', id: '/product/bar', }); ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/w3c/ServiceWorker/issues/1512#issuecomment-615144592
Received on Friday, 17 April 2020 09:29:24 UTC