Technical
TechnicalInfo

Resource Hints

Checks for dns-prefetch, preload, and prefetch hints for performance.

What this check measures

We look for `<link rel="dns-prefetch">`, `<link rel="preload">`, and `<link rel="prefetch">` usage. These help prioritize critical resources and pre-load likely-next resources.

Why it matters

Well-placed preload for the LCP image can cut LCP by 300-800ms. Overused or incorrect hints waste bandwidth and confuse the browser's scheduler.

search

How our audit detects it

Parse link tags with rel=dns-prefetch/preload/prefetch. Validate that preloaded assets are actually used above the fold.

Typical findings

  • error_outlineHero image not preloaded — unnecessary 500ms LCP.
  • error_outlinePreload on a font never used on the page.
  • error_outlinePreload without `as` attribute — browser ignores it.

How to fix

Preload the LCP image and critical fonts only. Do not preload everything — it dilutes priority. Always include `as="image"` or `as="font"`.

Frequently asked questions

Preload or prefetch?expand_more
Preload = current page critical. Prefetch = likely next navigation. Different purposes.

Want this checked on your site?

Pantra runs the full audit (SEO, Security, GEO, Performance, Schema, Technical, Images) in 10 seconds and generates stack-specific fix prompts.

Scan my site

Related checks