Dynamic RenderingRendered On-Demand
This page is rendered on the server for every request, generating fresh HTML each time a user visits. Unlike static pages, the HTML is never cached.
- ✔HTML is generated per request
- ✔Data fetching occurs at request time
- ✔Content is always up-to-date
- ✔Ideal for dynamic or user-specific content
This strategy combines the flexibility of dynamic URLs with real-time server rendering, ensuring that every visitor receives the most up-to-date version of the page. However, it may be slightly slower than SSG or SSG with ISR due to server-side processing on each request.
Rendered at:
Pokémon is fetched at request time based on the [name] route parameter. This page regenerates on each request, so the content is always fresh.