SSG Pages with ISR ListPre-rendered pages at Build Time

This page lists a series of statically generated pages created from the dynamic route /ssg/dynamic-route/isr/[name]. During build time, Next.js uses generateStaticParams to generate each page as static HTML. Every visitor sees the same pre-rendered content, and no server processing is required at request time.

Pre-Rendered Pages

  1. /ssg/dynamic-route/isr/chikorita
  2. /ssg/dynamic-route/isr/bayleef
  3. /ssg/dynamic-route/isr/meganium
  4. /ssg/dynamic-route/isr/cyndaquil
  5. /ssg/dynamic-route/isr/quilava
  6. /ssg/dynamic-route/isr/typhlosion
  7. /ssg/dynamic-route/isr/totodile
  8. /ssg/dynamic-route/isr/croconaw
  9. /ssg/dynamic-route/isr/feraligatr
Pages generated at 

On-Demand Generation/Caching

Pages not pre-rendered via generateStaticParams are built on-demand when first visited. Once rendered, they're cached so subsequent requests serve the static page instantly, ensuring fast load times without extra server processing.

On-Demand Pages: Examples

  1. /ssg/dynamic-route/isr/pichu
  2. /ssg/dynamic-route/isr/heracross
  3. /ssg/dynamic-route/isr/tyranitar