-
Notifications
You must be signed in to change notification settings - Fork 26
Frontend Glossary of Terms & Documentation
Sean Albert edited this page Aug 5, 2021
·
1 revision
"Pre-rendered content is served to a CDN and made dynamic through APIs and serverless functions. Technologies in the stack include JavaScript frameworks, Static Site Generators, Headless CMSs, and CDNs."
"Think of a static site generator as a script which takes in data, content and templates, processes them, and outputs a folder full of all the resultant pages and assets."
NextJS is a static site generator.
- https://nextjs.org/docs/basic-features/pages#static-generation-recommended
- https://www.netlify.com/blog/2020/04/14/what-is-a-static-site-generator-and-3-ways-to-find-the-best-one/
- https://jamstack.org/generators/
Where static sites are built at deploy time, server-rendered sites are built at runtime.
Netflify, with the NextJS plugin, allows us to use both SSG and SSR.