Why do entirely static Next.js App Router apps generate ISR Functions?

When deploying a barebones Next.js App Router project, I am surprised to see that despite the entire application consisting of static assets, Functions (and ISR Functions) are still generated:

(This was created via pnpm create next-app --example reproduction-template app-name. The app is almost entirely empty; it does nothing and renders nothing.)

My intuition is: since the app is entirely static, a function is unnecessary, as the app can be entirely represented with a directory of files.

However, I eventually stumbled upon this page: Vercel Data Cache, which states:

When a page contains entirely static data , Vercel will use ISR to generate the whole page. However, when a page contains a mix of static and dynamic data , the dynamic data needs to be re-fetched when rendering the page. In this scenario, Vercel Data Cache is used to cache the static data to avoid slow origin fetches.

I remain curious on why ISR is deemed necessary, because there are no fetch calls present anywhere; the app does not require any dynamic data.

This has also led me to conclude that an entirely static Next.js App Router app incurs both Fast Data Transfer and Fast Origin Transfer usage; the latter occurs due to the (ISR) Functions.

One possible reason is that the ISR functions “live” on the Edge, and cache the static data such that it only needs to reach out to the origin to transfer it once (which would explain why my FOT is significantly lower than my FDT). These ISR functions never actually regenerate, and effectively have an invalidation time of ∞. Then, when users request my website (incurring FDT, but no FOT when cached), the ISR Function can immediately respond with the cached static content, without having to hop back to the origin. In this way, it is effectively identical to propagating the static content to the Edge Network (billed as FOT once per deployment), with future request bandwidth incurring FDT. Is this correct?

An underlying concern that may frame this question better is that I am worried that the FOT limit of 100 GB would easily be surpassed, even on a static site, because all routes are ISR Functions. However, if it’s the case that the FOT transfer definitely only occurs once per deployment, then that’s much less of a concern.

Hi, @slc! Thanks for your patience and welcome to the Vercel Community :wave:

I’d be happy to provide some information with some resources to help address your question about static Next.js App Router apps generating ISR Functions.

ISR (Incremental Static Regeneration) for static pages

The behavior you’re observing is related to how Next.js and Vercel handle static content optimization. Even for entirely static sites, ISR can provide benefits in terms of caching and edge distribution.

Vercel’s Data Cache and Edge Network

Your intuition about the ISR functions living on the Edge and caching static data is correct. This approach allows for efficient content delivery and reduced origin requests.

Fast Origin Transfer (FOT) and Fast Data Transfer (FDT)

Your understanding of FOT occurring once per deployment for static content is correct. The Edge Network caches the content, reducing the need for frequent origin requests.

Bandwidth and usage concerns

Regarding your concern about surpassing the FOT limit, you’re right that for static sites, the transfer to the edge occurs once per deployment. This means that the 100 GB limit is unlikely to be a concern for most static sites.

Next.js App Router and static optimization:

The App Router in Next.js is designed to work seamlessly with both static and dynamic content. For static sites, it still leverages ISR for optimal performance.

In summary, while it might seem counterintuitive to generate ISR Functions for entirely static content, this approach allows Vercel to optimize content delivery through its Edge Network, providing better performance and scalability for your application.

If you have any further questions or need more clarification, feel free to ask!

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.