Skip to content
Core Web Vitals specialists

Blog

Break Up Long Tasks: Lower INP with scheduler.yield

Break long JavaScript tasks over 50 ms into chunks with scheduler.yield(), free the main thread between the chunks and keep the INP steadily under 200 ms.

12 min read

Long Animation Frames: Find the Scripts Slowing INP

The Long Animation Frames API reveals since Chrome 123 exactly which script causes a slow INP interaction -- so you optimize deliberately instead of blindly.

13 min read
Server & hosting Aug 7, 2026

Redirect Chains: The Hidden Delay Before the First Byte

Every redirect costs a round trip before the first byte. Learn how to detect HTTP, www and slug chains and reduce them to a single hop without losing SEO value.

12 min read

Service Workers and Precaching for Faster Repeat Visits

How a service worker with precaching keeps critical files local, serves repeat visits with almost no server round trip and when the effort truly pays off.

12 min read

Break Down LCP into Four Phases: the Subpart Analysis

Stop optimizing Largest Contentful Paint blindly: measure TTFB, load delay, load time and render delay individually and target the biggest lever deliberately.

12 min read
Server & hosting Jul 31, 2026

Early Hints 103: Put Server Think Time to Work

Status code 103 per RFC 8297: how the server sends preconnect and preload hints during think time, how the nginx rollout looks and where the honest limits run.

13 min read

Cookie Banners and Core Web Vitals: Fixing the LCP Trap

Cookie banners move LCP, INP and CLS: how to measure the consent layer impact in the field, rebuild it properly and take it out of the critical path for good.

13 min read

content-visibility: Skip Rendering Work on Long Pages

content-visibility and CSS containment limit the rendering work of long pages to the visible area - with placeholder heights that avoid new layout shifts.

13 min read

Shared Dictionaries: Ship Bundles as Deltas

Compression dictionary transport per RFC 9842: how browsers and servers ship bundles as deltas against the previous version - patterns, configuration, fallback.

12 min read