sw-precache icon indicating copy to clipboard operation
sw-precache copied to clipboard

[Deprecated] A node module to generate service worker code that will precache specific resources so they work offline.

Results 58 sw-precache issues
Sort by recently updated
recently updated
newest added

Hi, I have a webapp project with many pictures (average 10000, 5Go) and I would like to have a offline capacity at start. So, I initialize my staticFileGlobs with all...

I've basically got a PWA with a client which works fine offline and online. When online, server API requests gets properly handled through `runtimeCaching` set to `networkOnly`. The server API...

I'm really new at using ionic, I have courses on ionic 3 but the version now is ionic 5, so I'm trying to create an app, while compiling it, that...

**Please paste the output of the following command here: sudo edit-chroot -all** chronos@localhost / $ sudo edit-chroot -all name: xenial encrypted: yes, locked Unmounting /mnt/stateful_partition/crouton/chroots/xenial... **Please describe your issue:** ASUS...

GitHub security rants for one of my projects: > 1 lodash.template vulnerability found in yarn.lock yesterday Remediation Upgrade lodash.template to version 4.5.0 or later. For example: lodash.template@^4.5.0: version "4.5.0" sw-precache...

I have certain routes that I want to be network only. I have been adding this to my generated service worker file to accomplish that. Is there an option offered...

sw.js:1 Uncaught ReferenceError: workbox is not defined ![image](https://user-images.githubusercontent.com/16284354/55953640-17ff1480-5c76-11e9-8057-593b645b2d3f.png)

If I'm building a new app, I can structure my site such that I can easily separate files to be cached from those that shouldn't. If I'm adding precache to...

documentation

My sw-precache-config file is listed as below ``` module.exports = { staticFileGlobs: [ 'build/**.png', 'build/vega-icons/**', 'build/static/**' ], swFilePath: './build/service-worker.js', templateFilePath: './service-worker.tmpl', stripPrefix: 'build/', handleFetch: false } ``` I am using...