← All resources
Resource Hints

Preload critical assets (hero image, primary font)

Tell the browser to fetch your LCP image and key font before it parses them out of CSS.


The browser discovers fonts and CSS background images late, after parsing CSS. preload fetches them up front so they're ready when needed — directly improving LCP and reducing font swap flashes.

How to fix it

<link rel="preload" as="font" type="font/woff2" href="..." crossorigin>
More on Resource Hints
Run a check → Browse resources