jargon

Frontend & browser·Loading, assets and the critical path

you told the browser to fetch the hero font now, at high priority, because it is needed on this page.

Preload

Also calledrel=preload

A hint that a resource is required by the current page and should be fetched immediately at high priority. It is for things the browser cannot discover early — a font referenced from inside CSS, an image set by script, a chunk needed right after hydration. It requires the `as` attribute to be correct or the resource is fetched twice, and preloading something not actually used is a warning and pure waste.

Commonly confused with