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
Nevertheless, what is not currently accounted for in runtime caching are assets located in wp-content that aren't inside of uploads, themes, or plugins. Namely, as noted in #667 (comment), a caching plugin like Autoptimize will generate scripts and styles that get stored in wp-content/cache. These should be included in the runtime cache when offline browsing is enabled.
The text was updated successfully, but these errors were encountered:
Offline browsing currently enables runtime caching for:
wp-content/uploads
'^' . preg_quote( trailingslashit( includes_url() ), '/' ) . '.*'
'^' . preg_quote( trailingslashit( plugins_url() ), '/' ) . '.*'
'^(' . implode( '|', $theme_directory_uri_patterns ) . ').*'
Nevertheless, what is not currently accounted for in runtime caching are assets located in
wp-content
that aren't inside ofuploads
,themes
, orplugins
. Namely, as noted in #667 (comment), a caching plugin like Autoptimize will generate scripts and styles that get stored inwp-content/cache
. These should be included in the runtime cache when offline browsing is enabled.The text was updated successfully, but these errors were encountered: