What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 5 questions

Less than a minute. Find out how much you really know about Google search.

🕒 ~1 min 🎯 5 questions

Official statement

AMP pages will be treated like standard HTML pages for Core Web Vitals. They will need to meet the same thresholds, even though by default, AMP pages are generally fast enough to achieve them.
🎥 Source video

Extracted from a Google Search Central video

💬 EN 📅 01/04/2021 ✂ 40 statements
Watch on YouTube →
Other statements from this video 39
  1. Can Removing Links Trigger a Google Penalty?
  2. Should you really clean up your artificial links if Google already ignores them?
  3. Are links really losing their ranking power on Google?
  4. Do backlinks lose their significance once a website is established?
  5. Should we really ban all exchanges of value for links?
  6. Are editorial collaborations with backlinks really risk-free according to Google?
  7. Should you really stop all large-scale repetitive link tactics?
  8. Are Google’s manual actions always visible in Search Console?
  9. Does an inactive spam domain automatically regain its reputation after a decade?
  10. Should you really update the publication date after every small change on a page?
  11. Do News sitemaps really accelerate the indexing of your news articles?
  12. Can self-referential canonical tags really safeguard your site from URL duplications?
  13. Should you really let go of rel=next and rel=prev tags for pagination?
  14. Is it true that the number of words isn't a Google ranking factor?
  15. Can database-generated sites still rank by automatically cross-referencing data?
  16. Are long-term 302 redirects really equivalent to 301s for SEO?
  17. How long can a 503 error last without risking deindexation?
  18. Why does it really take 3 to 4 months for a revamp to be recognized by Google?
  19. Are separate mobile URLs (m.example.com) still a viable SEO option?
  20. Should you be worried about massively removing backlinks after a manual penalty?
  21. Are Backlinks Becoming a Secondary Ranking Factor?
  22. Should you really wait for links to come in 'naturally' or take the initiative?
  23. What exactly constitutes a natural link according to Google, and how can you avoid risky practices?
  24. Should you nofollow all editorial links that come from collaborations with experts?
  25. Are you truly confident that you don't have any Google manual penalties?
  26. Does a spammy past really erase its SEO footprint after a decade?
  27. Do AMP pages still hold a competitive edge against Core Web Vitals?
  28. Should you really update a page's publication date to improve its ranking?
  29. Do News sitemaps really speed up the indexing of your content?
  30. Why does your site fluctuate between page 1 and page 5 of Google's results?
  31. Does fact-check markup really enhance your page rankings?
  32. Is it true that you can ditch AMP to appear in Google Discover?
  33. Should you really add a self-referencing canonical tag on every page?
  34. Should we still use rel=next and rel=previous tags for pagination?
  35. Is it true that the number of words doesn’t really matter for Google rankings?
  36. Can database-generated sites really rank on Google?
  37. Should you really abandon separate mobile URLs (m.example.com)?
  38. Should you really worry about the difference between 301 and 302 redirects?
  39. How long can you keep a 503 code without risking deindexation?
📅
Official statement from (5 years ago)
TL;DR

Google confirms that AMP pages do not receive special treatment for Core Web Vitals. They must meet the same thresholds as standard HTML pages, even though their optimized architecture typically makes them compliant by default. For SEO teams, this means that a CWV audit remains essential for AMP, particularly concerning third-party components and extensive customizations that may degrade performance.

What you need to understand

Why does this clarification change the game for AMP?

For a long time, SEO practitioners viewed AMP as an automatic ticket to web performance. The logic seemed simple: a framework constrained by design, limited resources, hence metrics would inevitably be green.

This statement from Mueller shatters that assumption. AMP is not a wild card that exempts one from rigorous CWV auditing. Google applies exactly the same thresholds — 2.5s for LCP, 100ms for FID, 0.1 for CLS — whether it's an AMP page or a vanilla HTML page with 3MB of JavaScript.

Where are the friction points on AMP?

The majority of AMP pages do indeed meet the thresholds without particular effort. The framework imposes strict constraints: no custom JavaScript without going through validated components, CSS inline limited to 75KB, native lazy-loading on images.

However, three scenarios create recurring problems. First, third-party ads: a poorly configured programmatic slot can spike CLS even on AMP. Next, dynamic components like amp-list or amp-bind that load content after the first render — if the area is not properly reserved, layout shift is guaranteed. Finally, custom web fonts poorly preloaded that cause visible FOIT or FOUT.

Does this rule apply to all AMP environments?

Mueller makes no distinction between self-hosted AMP and AMP served from Google Cache. Both must meet the same CWV thresholds. This is an important point because some believed that AMP cache, with its optimized CDN distribution, might benefit from more lenient treatment.

In reality, the cache helps significantly — nearly zero latency, pre-established connections — but does not compensate for poorly structured code. An AMP page that takes 8 seconds for LCP locally might take 4 seconds from the cache, but will still fall short of the threshold.

  • AMP pages receive no special treatment for Core Web Vitals — same thresholds as standard HTML
  • By default, AMP generally meets the criteria due to the technical constraints of the framework
  • Main points of attention: programmatic ads, dynamic components, custom web fonts
  • AMP cache improves performance but does not exempt from having clean code on the editor side
  • A CWV audit remains essential even on AMP, especially in a real production environment

SEO Expert opinion

Is this position consistent with real-world observations?

Mueller's statement aligns perfectly with what we observe in production. AMP is not magical — it’s just a technical framework that eliminates 90% of common errors. The remaining 10% depend on the implementation and can be enough to derail metrics.

I have audited news sites where 80% of AMP pages were CWV compliant, but the remaining 20% — often sponsored articles with lots of ads or enriched content like interactive quizzes — significantly exceeded the thresholds. Google indeed makes no distinction: if LCP is at 3.2s, the page is classified as “needs improvement” even if it’s technically AMP.

What nuances should we consider regarding ease of compliance?

Mueller states that “by default AMP pages are generally fast enough to meet” the thresholds. This is true, but this wording masks a more complex reality. A basic AMP page — text, images, simple structure — will comply effortlessly. But as soon as you add customization, dynamic content, or aggressive monetization, the situation complicates.

The classic trap: migrating a site to AMP thinking it solves performance issues, then gradually reinjecting business needs (advanced tracking, A/B testing, real-time recommendations) that degrade the metrics. Six months later, CWV return to the same level as before migration, except now we have two versions of the site to maintain.

In what cases does this rule pose a problem?

The critical scenario involves e-commerce sites on AMP. The framework was never designed for complex transactional journeys — cart management, multi-criteria filters, product customization. When you force these features into AMP with components like amp-bind or amp-form, performance quickly degrades.

As a result, you end up with a constrained technical stack that delivers neither the desired user experience nor the expected performance. It’s the worst of both worlds. In these cases, a well-optimized classic HTML page — code splitting, intelligent prefetch, selective lazy-loading — can yield better CWV than an overloaded AMP page. [To be verified] through A/B testing on your actual traffic before generalizing.

Warning: AMP no longer provides any specific SEO advantage since the end of the Top Stories carousel reserved for it. If your AMP pages do not meet CWV thresholds, you accumulate drawbacks — double maintenance + average performance — without any visibility gain.

Practical impact and recommendations

What should you prioritize auditing on your AMP pages?

Your first reflex should be to extract the real CWV data from the Search Console, filtered by AMP URLs if you have a dual implementation. Lab tools (Lighthouse, PageSpeed Insights) provide a preliminary indication, but the real-world metrics from CrUX are what Google actually uses for ranking.

Focus on three risk areas. First, ad slots — test with and without to quantify their actual impact on CLS and LCP. Next, the dynamic components: everything that loads after the first render must have a fixed reserved space to avoid layout shifts. Finally, custom fonts: use font-display: swap and preload critical variants with <link rel="preload">.

How do you fix CWV issues specific to AMP?

For LCP, the classic culprit is an unoptimized hero image. Even though AMP handles lazy-loading, it doesn’t compress files for you. Use an image CDN with automatic compression (WebP/AVIF) and adaptive sizing. On mobile, a 1200px image loaded in full width while the viewport is 375px will kill LCP.

For CLS, the trick is to define explicit dimensions for all elements that can change size: amp-ad, amp-img, amp-iframe. If you’re using amp-list for dynamic content, set a minimum height with a skeleton loader. And test in real conditions — often, it’s the ad that doesn’t load in dev but blows up CLS in production.

When should you consider abandoning AMP?

If you maintain AMP solely for performance and your AMP pages do not meet CWV thresholds, the question is worth considering. Let’s be honest: maintaining two versions of the site incurs a cost — development, testing, editorial synchronization.

Do the simple calculation. How much organic traffic actually comes to the AMP URLs? If it’s less than 15% and the metrics are no better than the HTML version, you are investing resources for no gain. In this case, it’s better to focus efforts on a single hyper-optimized version. These optimizations may be complex to orchestrate alone — analyzing CrUX data, technical prioritization, cross-device validation. A specialized SEO agency in web performance can help you objectify decisions and implement fixes methodically.

  • Extract real CWV data (Search Console + CrUX) filtered by AMP URLs
  • Specifically audit ad slots and quantify their CLS/LCP impact
  • Check that all dynamic components (amp-list, amp-bind) have reserved dimensions
  • Optimize hero images: WebP/AVIF compression + mobile adaptive sizing
  • Configure font-display: swap and preload critical fonts
  • Compare AMP vs standard HTML performance on a representative sample of pages
AMP pages do not benefit from any special treatment regarding Core Web Vitals. The framework's architecture makes compliance easier by default, but does not exempt you from a rigorous audit — particularly regarding ads, dynamic content, and custom fonts. If your AMP pages do not outperform the HTML version on CWV metrics, reconsider the ROI of maintaining this dual technical stack.

❓ Frequently Asked Questions

Les pages AMP ont-elles un avantage de ranking grâce à leurs performances ?
Non, elles sont traitées exactement comme des pages HTML normales. Elles doivent respecter les mêmes seuils CWV et n'ont aucun bonus spécifique. Le seul avantage est que le framework AMP facilite techniquement l'atteinte de ces seuils.
Le cache AMP améliore-t-il automatiquement les Core Web Vitals ?
Le cache AMP réduit la latence et accélère le chargement, ce qui aide pour le LCP. Mais il ne corrige pas les problèmes de code — un CLS causé par des ads mal configurées ou un LCP plombé par une image non optimisée resteront problématiques même avec le cache.
Dois-je auditer les CWV même sur des pages AMP basiques ?
Oui, surtout en environnement de production réel avec publicités et tracking activés. Une page AMP de test sans tiers peut être conforme, puis échouer en prod à cause des scripts publicitaires ou analytics.
Quels composants AMP posent le plus de problèmes pour les CWV ?
Les amp-ad (layout shift si mal dimensionnés), amp-list et amp-bind (CLS si pas de hauteur réservée), et les polices web custom (LCP si pas de preload). Les iframes embarqués type amp-iframe peuvent aussi dégrader le FID.
Faut-il abandonner AMP si mes pages ne respectent pas les seuils CWV ?
Pas nécessairement. Identifiez d'abord la cause — souvent corrigible avec des optimisations ciblées. Mais si les performances AMP sont équivalentes ou inférieures à votre version HTML classique, le ROI de maintenir deux stacks devient discutable.
🏷 Related Topics
Domain Age & History AI & SEO JavaScript & Technical SEO Mobile SEO Web Performance

🎥 From the same video 39

Other SEO insights extracted from this same Google Search Central video · published on 01/04/2021

🎥 Watch the full video on YouTube →

Related statements

💬 Comments (0)

Be the first to comment.

2000 characters remaining
🔔

Get real-time analysis of the latest Google SEO declarations

Be the first to know every time a new official Google statement drops — with full expert analysis.

No spam. Unsubscribe in one click.