SSG (Static Site Generation)
What it is: Static Site Generation. The server generates all website pages as pure HTML files only once, during the build step.
How it works: When a user visits a page, they receive a ready-made file with no server-side processing.
Practical difference: It is the fastest possible method to deliver a page. Ideal for content that rarely changes (blogs, institutional websites, documentation). The downside is that any change requires a full site rebuild.
How it works: When a user visits a page, they receive a ready-made file with no server-side processing.
Practical difference: It is the fastest possible method to deliver a page. Ideal for content that rarely changes (blogs, institutional websites, documentation). The downside is that any change requires a full site rebuild.