P2 · MediumPerformance
Missing font-display
Web fonts block text rendering
Code: missing_font_display
Why it matters
Web fonts block text rendering. Slow experiences increase bounce rates and hurt Core Web Vitals scores. Google uses these metrics as a direct ranking signal.
How to fix
Add font-display: swap to @font-face rules
html@font-face {
font-family: 'CustomFont';
src: url('/fonts/custom.woff2') format('woff2');
font-display: swap;
}Related checks in Performance
Run a free scan to check your site
Get a complete audit in under 2 minutes. No account required.
Start Free Scan