What Are the Core Web Vitals?
Since May 2021, Google has factored the Core Web Vitals into search rankings. The three metrics measure how visitor-friendly a website actually is – independent of content quality alone.
Fast load times, stable page rendering, and quick responses to interactions are core components of a good user experience – and Google directly factors them into ranking via the Core Web Vitals.
history Letzte Änderung: 21.08.2026
Since May 2021, Google has factored the Core Web Vitals into search rankings. The three metrics measure how visitor-friendly a website actually is – independent of content quality alone.
LCP (Largest Contentful Paint): Measures "perceived load time" – how long it takes for the largest visible element in the viewport to appear. Target: under 2.5 seconds.
INP (Interaction to Next Paint): Evaluates the page's responsiveness to user interactions and replaced the earlier "First Input Delay" (FID) metric in March 2024. A low INP value shows that the page consistently responds quickly to input.
CLS (Cumulative Layout Shift): Measures "visual stability", i.e. unwanted layout shifts while the page is loading. Target: under 0.1.
The easiest way is via Google's PageSpeed Insights: enter the URL of a single page there (there's no way to analyze an entire website at once) and get separate scores for the mobile and desktop versions.
A second, site-wide view is provided by Google Search Console under "Experience → Core Web Vitals". Note: this doesn't always account for every page Google has indexed – clicking "Open Report" shows details and possible errors for individual pages.
According to a Google study on website usability, load time has by far the biggest influence on how a website is perceived – ahead of intuitiveness (how quickly visitors find what they're looking for), responsiveness, and usability. A short load time is therefore a core building block of any search engine optimization.
There's also a clear correlation with bounce rate: the longer a page takes to load, the more likely a visitor is to leave the website without viewing a second page.
Pages with very large hero or background images can also be well optimized in TYPO3. The key is delivering images responsively – i.e. at the appropriate resolution for desktop, tablet, and smartphone – and in the space-saving WebP format.
Reasons for a high LCP – and how to fix it with TYPO3.
Learn more arrow_forwardWhy websites start rendering too slowly – and how to change that.
Learn more arrow_forwardWhy web pages shift while loading – and how to avoid it.
Learn more arrow_forwardGoogle Lighthouse is a free analysis tool built directly into Chrome DevTools for assessing a website's quality. It checks, among other things, performance, accessibility, best practices, and SEO, and provides concrete optimization pointers.
In Google Chrome:
These field-tested measures can noticeably improve a TYPO3 website's load time.
Analyze the current state: Start with a baseline assessment, e.g. using Google's PageSpeed Insights or WebPageTest. Both tools score mobile and desktop load time separately and provide concrete improvement suggestions – we recommend a target of at least 90 out of 100 points.
Clean up the source code: Lean, error-free HTML, CSS, and JavaScript without unnecessary nesting renders pages faster. Minification removes unnecessary characters, and combining multiple files reduces additional requests.
Compress and deliver images appropriately: Serve images at the smallest possible file size and the dimensions actually needed. TYPO3 can automatically shrink images and convert them to the efficient WebP format.
Reduce external elements: Every resource from a third-party server – such as social media buttons or ad banners – creates an additional request and slows down page rendering. Use them as sparingly as possible.
Prefer web-safe fonts: Custom web fonts have to be downloaded on every visit. Fonts already pre-installed on most devices, on the other hand, cost virtually no load time.
Compress data: GZIP can significantly shrink files before they're transferred between server and browser – set up with just a few lines of server-side configuration.
Use caching: Browser and server caching ensure that recurring resources like the logo don't need to be reloaded on every visit, but are served from cache instead.
Use a content delivery network: For an international audience, a CDN distributes the website across servers in different countries, so content is always delivered from the nearest location.
Enable lazy loading: Images outside the visible area are only loaded once actually needed. As of TYPO3 10, browser-native lazy loading via the loading attribute is already the default.
Adopt HTTP/2: The more modern transfer protocol bundles multiple requests together and compresses data more thoroughly – provided both browser and hosting support it.
We check your website's Core Web Vitals free of charge and show you concrete ways to optimize.