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
The VuePress documentation site I'm building has 400+ pages, prefetching everything is a bit overkill and a bandwidth/server hog. I'd like to suggest a "prefetch" option in options.siteConfig to let the user control the prefetching in config.js. Could be either a boolean or the actual function expected in createBundleRenderer. If unset, the option will not be set and the current behavior will remain.
The text was updated successfully, but these errors were encountered:
VuePress leaves the BundleRenderer's shouldPrefetch option unset - it used to be
() => false
but was disabled then removed by @yyx990803 here:9719bc3#diff-26b681bd4dac10f25d5293c7595c435bL56
The VuePress documentation site I'm building has 400+ pages, prefetching everything is a bit overkill and a bandwidth/server hog. I'd like to suggest a "prefetch" option in
options.siteConfig
to let the user control the prefetching inconfig.js
. Could be either a boolean or the actual function expected increateBundleRenderer
. If unset, the option will not be set and the current behavior will remain.The text was updated successfully, but these errors were encountered: