-
Notifications
You must be signed in to change notification settings - Fork 830
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enable use of runtimeCaching in InjectManifest mode #1614
Comments
Please see #708 (comment) If you're not content with running |
Are there any plans in the future to support this? I'm open to trying the importScripts method, but I'd like to save myself the effort of having to manually configure my transpiler for the service worker. |
It's not on the roadmap. Better compilation/transpilation of the service worker when using webpack is on the radar, though: #1513 |
But the separate |
I am dumb nevermind. I think I don't need to worry about hashes on what I am trying to do. |
Issue or Feature Request Description:
I only want
InjectManifest
to add a web push ability. It would be very useful if I could use theruntimeCaching
option withInjectManifest
. This would also make switching fromGenerateSW
mode toInjectManifest
easier.One workaround I can use is to enable
GenerateSW
withruntimeCaching
once and then copy and paste the code into aservice-worker.js
file. However, now I have to maintain code when it could be generated for me.The text was updated successfully, but these errors were encountered: