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
- /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
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.