Skip to content

What is Static site generation? Definition and explanations

Static generation (SSG) produces HTML pages once, at build time, then serves them as they are from a CDN. The result is very fast, cheap and hard to break, since no computation happens at visit time. Its constraint is freshness: updating a page means regenerating it, which is why incremental regeneration strategies exist.

In one sentence

Static generation produces pages once at build time, then serves them as they are.

Related terms

Sources and references

Glossary