No Performance Hints
Nobody optimized this site for loading speed. No preconnect, no preload, no dns-prefetch.
Quick Answer
To add performance hints, identify your critical third-party domains (fonts, analytics, CDNs) and add <link rel="preconnect"> tags for them in your <head>. Preload critical fonts and hero images with <link rel="preload">. This can shave 100-500ms off page load time.
The Problem
Without resource hints, the browser discovers third-party resources only after parsing your HTML. By then, it's already wasted hundreds of milliseconds that could have been used to start those connections early.
Why It Matters
Resource hints like preconnect and preload are performance optimizations that only developers implement — template builders don't add them. They tell the browser to start connecting to critical servers before it even needs them, reducing perceived load time by 100-500ms.
How to Fix It
Identify third-party domains your site loads from (Google Fonts, analytics, CDNs).
Add <link rel="preconnect" href="https://fonts.googleapis.com"> for each critical domain.
Add <link rel="preload" as="font" href="/fonts/your-font.woff2" type="font/woff2" crossorigin> for critical fonts.
Add <link rel="dns-prefetch"> for less critical third-party domains.
Test with WebPageTest.org to verify the hints are reducing connection time.
Want to Know Your Full Score?
This is just one issue. Our 27-point autopsy checks everything.
Don't want to fix it yourself?
Get Professional Help