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
- /ssg/dynamic-route/bulbasaur
- /ssg/dynamic-route/ivysaur
- /ssg/dynamic-route/venusaur
- /ssg/dynamic-route/charmander
- /ssg/dynamic-route/charmeleon
- /ssg/dynamic-route/charizard
- /ssg/dynamic-route/squirtle
- /ssg/dynamic-route/wartortle
- /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.