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
When building the project, the generated precache-manifest does only include javascript files but no stylesheets. This is due to the fact, that the workbox plugin is only included in the modern-build but stylesheets are only generated once for the legacy-build and thus are not available as assets in the modern-build.
Maybe it would be better to move stylesheets to the modern-build part so that they are visible to the "more relevant" modern-build parts?
The text was updated successfully, but these errors were encountered:
So the logic here was that we don't want the SW to be running as part of the legacy build, because then it'll be pre-caching our old ES2015 JS... which is unlikely to be what we want if a SW is running.
So then perhaps we look into moving the CSS build into the modern build phase instead?
When building the project, the generated
precache-manifest
does only include javascript files but no stylesheets. This is due to the fact, that the workbox plugin is only included in the modern-build but stylesheets are only generated once for the legacy-build and thus are not available as assets in the modern-build.Maybe it would be better to move stylesheets to the modern-build part so that they are visible to the "more relevant" modern-build parts?
The text was updated successfully, but these errors were encountered: