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
in source code if (pwa.manifest && pwa.manifest.start_url) { options.preCaching.unshift(...normalizePreCaching(pwa.manifest.start_url)); }
When I use the ssr method to render application, some data will be acquired in the node server and injected into the html.
If the user installs the pwa application and enters application from the icon, the page will not request the node server to obtain new html due to the start_url cache configuration.
The text was updated successfully, but these errors were encountered:
daidaishuo
changed the title
If start_url exists, precaching will always add start_url, can it be changed to configurable?
If start_url exists in the manifest.json, precaching will always add start_url path, can it be changed to configurable?
May 9, 2023
in source code
if (pwa.manifest && pwa.manifest.start_url) { options.preCaching.unshift(...normalizePreCaching(pwa.manifest.start_url)); }
When I use the ssr method to render application, some data will be acquired in the node server and injected into the html.
If the user installs the pwa application and enters application from the icon, the page will not request the node server to obtain new html due to the start_url cache configuration.
The text was updated successfully, but these errors were encountered: