SSR, SSG and ISR
Three ways of producing a web page: server-side rendering builds it per request, static site generation builds it once at deploy time, and incremental static regeneration serves a static page but rebuilds it periodically in the background.
Static is fastest and cheapest — the page is a file, servable from a CDN edge close to the visitor, and it cannot be slowed by a database. It suits anything that doesn't change per visitor: marketing pages, blog posts, service and location pages.
Server rendering is for content that genuinely differs per request — a logged-in dashboard, a personalised feed. It costs a server round trip on every view.
ISR is the pragmatic middle: static speed with content that refreshes on a schedule. It suits catalogues and blogs where minutes-old content is fine.
Why it matters
The choice sets both speed and hosting cost. A brochure site rendered per request is paying server cost for zero benefit — a common finding when a slow site is audited.
We build this. Website Development starts at $169 — every price is published.
Related terms
More in Web & Performance
Need this built rather than explained?
We publish every price we charge, and you get a quote in writing before anything starts.