SSG Pages ListPre-rendered pages at Build Time

This page lists a series of statically generated pages created from the dynamic route /ssg/dynamic-route/[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/bulbasaur
  2. /ssg/dynamic-route/ivysaur
  3. /ssg/dynamic-route/venusaur
  4. /ssg/dynamic-route/charmander
  5. /ssg/dynamic-route/charmeleon
  6. /ssg/dynamic-route/charizard
  7. /ssg/dynamic-route/squirtle
  8. /ssg/dynamic-route/wartortle
  9. /ssg/dynamic-route/blastoise
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/pikachu
  2. /ssg/dynamic-route/eevee
  3. /ssg/dynamic-route/dragonite