Static Site Generation
Simple explanation
Pre-building a page's HTML at build time rather than on each request.
Advanced explanation
Produces the fastest possible response time (no server computation per request) at the cost of needing a rebuild to reflect new data — a tradeoff, not a strictly better choice than SSR.
Related terms