SSG with generateStaticParams and ISRPre-Rendered at Build Time with Background Updates
This page is pre-rendered at build time for each path returned by generateStaticParams, producing static HTML just like a static page.
After the initial build, the page is cached and served to all visitors. The page regenerates in the background after the revalidation period, updating the cached HTML for future visitors.
- ✔HTML is generated at build time for all specified paths
- ✔Data fetching occurs at build time
- ✔Content is cached and served to visitors until revalidation
- ✔Pages are regenerated in the background after the revalidation period
- ✔Ideal for dynamic routes that need pre-rendering with occasional updates
This strategy combines the flexibility of dynamic URLs with the performance of static pages, while allowing background updates, making it ideal for content that changes occasionally but still benefits from pre-rendering.
Last Generated:
Pokémon fetched are pre-rendered at build time for each [name] route parameter. This page can regenerate in the background based on the ISR revalidation interval (1 Minute here).
Pre-Rendered Pages
- /ssg/dynamic-route/isr/chikorita
- /ssg/dynamic-route/isr/bayleef
- /ssg/dynamic-route/isr/meganium
- /ssg/dynamic-route/isr/cyndaquil
- /ssg/dynamic-route/isr/quilava
- /ssg/dynamic-route/isr/typhlosion
- /ssg/dynamic-route/isr/totodile
- /ssg/dynamic-route/isr/croconaw
- /ssg/dynamic-route/isr/feraligatr
Pages generated at