Core Web Vitals are a set of specific metrics defined by Google that measure real-world user experience on web pages. The three current Core Web Vitals are Largest Contentful Paint (LCP, measuring loading performance), Interaction to Next Paint (INP, measuring interactivity), and Cumulative Layout Shift (CLS, measuring visual stability). These metrics are used as ranking signals in Google Search.
LCP measures how long it takes for the largest content element (typically an image or text block) to become visible. Good LCP is under 2.5 seconds. INP measures the responsiveness of a page to user interactions, with good INP under 200 milliseconds. CLS measures unexpected layout shifts during page load, with good CLS under 0.1. Web performance books on Amazon explain measurement and optimization.
For URL shortening services, Core Web Vitals matter for the service's own content pages. Fast-loading glossary pages, articles, and the homepage contribute to better search rankings and user satisfaction. The redirect endpoints are not measured by Core Web Vitals since they do not render visible content.
Optimizing Core Web Vitals involves techniques such as image optimization, efficient JavaScript loading, font display strategies, layout reservation for dynamic content, and server-side rendering. Frontend optimization books on Amazon cover implementation techniques.