Static rendering means that routes are prerendered at build time. The result is cached and can be reused across requests. Static routes are fully cached in the Full Route Cache.

Dynamic rendering means that routes are rendered server-side at request time. The result is served to users but not cached.


These are the definition, the theory. In...