You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when one uses the GenerateSW class from the workbox-webpack-plugin in their Webpack config, a separate runtime file is created for the Workbox library by default (called something like workbox-[hash].js). This behavior can be configured via the inlineWorkboxRuntime option, which has the default value of false.
There is no such option for the InjectManifest class, though. I would like to separate the Workbox runtime from my custom service worker file, too. That would allow me to cache the former (the bigger) file. Would that be possible to implement?
The text was updated successfully, but these errors were encountered:
Currently, when one uses the
GenerateSW
class from theworkbox-webpack-plugin
in their Webpack config, a separate runtime file is created for the Workbox library by default (called something likeworkbox-[hash].js
). This behavior can be configured via theinlineWorkboxRuntime
option, which has the default value offalse
.There is no such option for the
InjectManifest
class, though. I would like to separate the Workbox runtime from my custom service worker file, too. That would allow me to cache the former (the bigger) file. Would that be possible to implement?The text was updated successfully, but these errors were encountered: