HomeCompanyPortfolioServicesSoftware & AIMobile AppsIndustriesLocationsPricingBlogContact
Englishالعربية
Home  /  Blog  /  Performance
PerformanceJun 08, 2026·10 min read

Core Web Vitals for Saudi Websites: A Practical Speed Guide

O
Omar
Engineering Lead
Core Web Vitals for Saudi Websites: A Practical Speed Guide

Most Saudi websites test well on a laptop over office fibre and badly on a mid-range Android phone over a mobile network. The second scenario is the one your customers are in, and the one Google measures.

The three metrics, in plain terms

Google measures these from real Chrome users, not from your test run. That means your score reflects the devices and networks your actual audience uses. In Saudi Arabia that skews toward mobile, and toward network conditions that vary considerably outside major city centres.

Test the way your users browse

Before optimising anything, get an honest baseline. Run PageSpeed Insights and read the field data section, not the lab score — field data is what Google uses for ranking. Then throttle Chrome DevTools to a mid-tier mobile device on slow 4G and load your homepage. The gap between that and your usual experience is usually the entire problem, revealed in one test.

Arabic fonts are the most common LCP culprit on Saudi sites

Arabic web fonts are large. A full Arabic family can be several hundred kilobytes, and loading two weights of Arabic alongside two weights of Latin is a substantial blocking cost on a mobile connection.

  1. Subset aggressively. Ship only the glyph ranges you use. Full Arabic fonts include ranges most sites never render.
  2. Use font-display: swap. Text renders immediately in a fallback rather than staying invisible while the font downloads.
  3. Preload the critical face only. One weight, the one used for the largest visible text.
  4. Self-host with WOFF2. Third-party font hosting adds a DNS lookup, a connection and a request chain on the critical path.
  5. Match fallback metrics. Use size-adjust and ascent-override so the fallback occupies similar space and the font swap does not cause layout shift.

Images: the second biggest win

Saudi sites frequently ship hero images at 3000px wide because that is what came out of the camera. On a 390px-wide phone that is roughly eight times more pixels than needed, downloaded over a mobile network.

On a Saudi mobile connection, every 100KB you do not send is worth more than every optimisation you apply to the 100KB you do.

JavaScript and INP

Interaction to Next Paint punishes heavy main-thread work. The usual causes on business websites are third-party tags, oversized frameworks for simple pages, and event handlers doing too much synchronously.

A brochure website does not need 400KB of JavaScript. A meaningful share of the Saudi corporate sites we audit ship a client-side framework to render content that could have been static HTML, and pay for it in INP on every interaction.

Hosting, CDN and latency

Physical distance costs milliseconds on every request. A Saudi audience served from a European origin with no CDN starts every page load at a disadvantage that no amount of front-end optimisation recovers.

Layout shift is usually four fixable things

  1. Images without dimensions — set width and height, always
  2. Web fonts swapping with different metrics — use metric-adjusted fallbacks
  3. Ads, embeds and iframes without reserved space — reserve it
  4. Content injected above existing content, such as cookie banners and promotional bars — overlay rather than push

A realistic optimisation order

Work in this sequence and most sites reach passing scores without a rebuild.

  1. Measure field data and establish a mobile baseline
  2. Fix images — format, sizing, dimensions, lazy-loading
  3. Fix fonts — subset, self-host, preload one face, metric-adjust the fallback
  4. Remove or defer third-party scripts that do not earn their weight
  5. Add a CDN with regional presence and correct cache headers
  6. Eliminate layout shift sources
  7. Only then consider architectural changes such as static generation or server-side rendering

Keep it from regressing

Performance decays. A new tag here, an uncompressed image there, and six months later you are back where you started. Set a performance budget in CI that fails the build when the page weight or LCP crosses a threshold, and review field data monthly. Treating speed as a standing requirement rather than a project is the only approach that holds.

[ Key Takeaways ]
Measure field data on a mid-range Android over mobile network
Arabic web fonts are the most common LCP problem on Saudi sites
Correctly sized modern images are usually the biggest single win
A regional CDN removes latency no front-end fix can recover
Enforce a performance budget in CI or the gains will decay

Frequently asked questions

What are good Core Web Vitals scores?+

Largest Contentful Paint under 2.5 seconds, Interaction to Next Paint under 200 milliseconds, and Cumulative Layout Shift under 0.1, measured on mobile field data from real users.

Why is my Saudi website slow on mobile?+

The most common causes are oversized images, heavy Arabic web fonts loaded without subsetting, too many third-party scripts, and serving from an origin far from the Kingdom without a regional CDN.

Do Arabic fonts slow down websites?+

They can significantly. Full Arabic families are large, so subset to the glyph ranges you actually use, self-host in WOFF2, preload only the critical weight and use font-display: swap.

Does website speed affect Google rankings in Saudi Arabia?+

Yes. Core Web Vitals are a ranking signal, and they are measured from real user data. Speed also affects conversion directly, which usually matters more commercially than the ranking effect.

Should I host my website inside Saudi Arabia?+

In-Kingdom hosting reduces latency for Saudi visitors and is required for some regulated data. For most businesses a good CDN with regional points of presence delivers similar performance benefits with more flexibility.

How do I stop my Core Web Vitals scores from degrading?+

Set a performance budget enforced in your CI pipeline so builds fail when page weight or LCP crosses a threshold, and review field data monthly rather than only at launch.

PerformanceCore Web VitalsSpeedMobileSaudi Arabia

Keep Reading

All Articles →

Ready to put these ideas to work?

Start a Project →