The Speculation Rules API has been quietly maturing in Chrome and Edge, and by 2026 it is the simplest way to make a Webflow site feel instantly navigable without rewriting it as a single page application. Almost every marketing site I build can adopt prerendering and prefetching with a small block of JSON, and the Largest Contentful Paint improvements show up immediately, with no build changes. It is a rare case where the cost is low and the user experience win is large. The discipline is to roll it out deliberately rather than blanket-applying it across every page.
What Is the Speculation Rules API and Why Does It Matter for Webflow Sites?
The Speculation Rules API is a browser feature that lets a page declare which links the browser should prefetch or prerender ahead of user navigation. The API is documented on MDN, with the most current update from September 2025, and on Chrome for Developers with the most recent edit in January 2026. For Webflow sites built as multi-page applications, the API delivers the perceived speed of a single page application without any of the build complexity.
The matter for Webflow Partners is that the API is one block of JSON in the head of the site. There is no build pipeline, no client side router, no hydration concerns. The page declares the rules. The browser does the work. The result is page navigations that complete in under one hundred milliseconds on the next click, which feels qualitatively different from a normal page load. The user experience win is significant and the implementation cost is low, which is the exact combination that justifies adoption.
How Does Prerendering Differ From Prefetching in Plain Language?
Prefetching downloads the page resources into the browser cache without rendering them. The next click loads quickly because the resources are already local. Prerendering goes further. It downloads, parses, and renders the page in a hidden background context. The next click swaps the rendered page into view instantly, with no loading time at all.
The tradeoff is resource cost. Prerendering uses more memory and CPU because it executes the full page lifecycle for pages the user might never visit. Prefetching is cheaper because nothing executes. The pattern that works in production is to prerender the highest-confidence next pages, like the most likely conversion path on a marketing site, and prefetch lower-confidence candidates. The API supports both patterns through the eagerness setting, which I cover next.
Which Browsers Support Speculation Rules in 2026?
Speculation Rules are supported in Chrome, Edge, and Opera as of May 2026. Firefox and Safari do not currently support the API. Browsers that do not support it ignore the rules block silently, which means there is no risk of breakage for users on unsupported browsers. They simply experience the site at normal navigation speed.
The honest math is that Chromium-based browsers cover roughly seventy to seventy-five percent of global traffic, with that share higher in some regions and lower in others. The benefit accrues to a majority of users without penalty for the minority. The progressive enhancement pattern is what makes the API safe to deploy without conditional logic. Adopting it is essentially free for the unsupported browsers and clearly beneficial for the supported ones, which is the right shape for a performance feature.
How Do You Add Speculation Rules to a Webflow Project Using Custom Code?
The implementation is one script tag in the site head with type set to speculationrules. The JSON inside the tag declares which URLs to prerender or prefetch and at what eagerness level. For a Webflow site, this goes in the Site Settings under Custom Code in the head section. No build step, no compilation, no dependencies.
A starter rule for most marketing sites prerenders the homepage, key landing pages, and the contact page when the user moves their cursor near the relevant link. The pattern is conservative, covers the highest-traffic navigation paths, and uses the moderate eagerness setting that balances responsiveness against resource cost. The setup takes about thirty minutes per site including testing. I covered the related performance discipline in my INP performance piece.
What Does the Eagerness Setting Actually Control?
The eagerness setting controls how aggressively the browser prefetches or prerenders the declared URLs. Conservative triggers on hover or near-touch. Moderate triggers on cursor approach over two hundred milliseconds. Eager triggers as soon as the page loads. Each level has a tradeoff between responsiveness and resource cost.
The pattern that works in production is moderate for most marketing site links and eager only for the single most likely next page, like the homepage to pricing path on a SaaS site. Conservative is reserved for pages with significant resource cost like long blog posts or media-heavy case studies. The eagerness levels are documented on Chrome for Developers with current guidance as of January 2026, including the FIFO based limits that prevent runaway prerendering across many candidates.
How Do Speculation Rules Play With Webflow Analyze and Third Party Analytics?
Prerendered pages do not register page views until the user actually navigates to them. This is by design. Analytics platforms like Google Analytics 4, Webflow Analyze, and Plausible handle this correctly when the prerender activates, firing the page view at the moment of navigation rather than at the moment of prerender.
The detail to verify is that any custom analytics code on the site uses the document.prerendering property to detect prerender state and defer execution until activation. Most modern analytics tools handle this automatically. Older custom tracking code might fire page views during prerender, which inflates metrics and produces ghost data. The fix is a one-line check at the top of any custom tracking script. Adding it during the speculation rules rollout is the right time to catch and fix any analytics issues that would otherwise surface later.
How Big Are the LCP and INP Improvements in Real Production Tests?
DebugBear has documented Largest Contentful Paint times under one hundred milliseconds on prerendered navigations, against a 2.5 second good threshold. The improvement is qualitative rather than incremental. Pages feel instant rather than fast. The Ray-Ban e-commerce case study referenced in 2026 Core Web Vitals coverage showed mobile conversion rates on product pages increasing by 101.47 percent after adopting Speculation Rules to prerender key pages.
The honest framing is that not every site sees this magnitude of improvement. The conversion lift correlates with how friction-sensitive the path is. E-commerce checkout flows, lead generation forms, and signup paths benefit most. Content-heavy navigation between blog posts benefits less because the user is already engaged. The measurable Core Web Vitals improvement is real on every site that adopts the API. The conversion impact varies by use case. I covered the broader site wide CWV pattern in my site wide Core Web Vitals piece.
What Pages Should Never Be Prerendered, and Why?
Three categories should never be prerendered. Pages that trigger irreversible side effects on load, like sign-out endpoints or one-time tokens. Pages with heavy resource cost, like long video pages or interactive configurators that consume significant memory. And pages with personalization that depends on user identity, because prerendering may not have the right session context.
The fourth category is third-party iframes that include trackers, advertising, or social media widgets. Prerendering these can produce double-counting in the third-party systems, which causes billing or analytics anomalies. The exclusion list for a typical site has five to ten URLs and patterns. Documenting the exclusions during setup prevents the awkward conversation later when something behaves unexpectedly. The discipline is small. The protection is real.
How Do Speculation Rules Fit Alongside View Transitions and AVIF Images?
Speculation Rules, View Transitions, and AVIF images each address a different part of the perceived performance equation. Speculation Rules handle the navigation latency. View Transitions handle the visual continuity during navigation. AVIF handles the image weight that drags Largest Contentful Paint. The three combine cleanly because each operates at a different layer of the stack.
The pattern that produces the best user experience uses all three. Speculation Rules prerender the next page. View Transitions animate the swap to the prerendered content. AVIF keeps the prerendered page light enough that the prerender itself does not stress the browser. For Partners adopting all three, the order of implementation matters less than the cumulative effect. Each one is worth shipping on its own, and the combination is what produces sites that feel genuinely modern. I covered the AVIF pipeline in my AVIF image pipeline piece.
What Is a Sensible Rollout Plan for a Small Studio With a Dozen Client Sites?
Three phases. Phase one rolls out Speculation Rules on the studio's own site, with measurement against the existing Core Web Vitals baseline. Phase two adds the rules to two or three client sites where the conversion path is well understood and the analytics integration is clean. Phase three extends to the remaining client portfolio over the following four to six weeks, one site per few days, with measurement at each step.
The rollout pace matters more than the speed. Each site benefits from the rules immediately on adoption, which means there is no penalty for going slowly. Every site that gets adopted produces measurable improvements that justify the studio's positioning around performance. The discipline is to measure honestly and document the results, both for internal practice operations and for client conversations. The case studies that come out of the rollout are the durable artifact. The performance work itself takes a few hours per site. The case studies pay back across the next year of client conversations. I covered the related performance reporting work in my six months of publishing piece.
If you are running a Webflow practice and want to roll out Speculation Rules across your client portfolio without breaking anything, drop me a line and tell me which client site has the highest performance pressure right now. Let's chat.
Get your website crafted professionally
Let's create a stunning website that drive great results for your business
Get in Touch
This form help clarify important questions in advance.
Please be as precise as possible as it will save our time.