Next.js

Tags
Development
Next.js
GitHub Repo

CSR vs SSR vs SSG

Leerob videos/courses/articles
Next.js docs
 
 
λ (Lambda) server-side renders at runtime (uses getInitialProps or getServerSideProps) ○ (Static) automatically rendered as static HTML (uses no initial props) ● (SSG) automatically generated as static HTML + JSON (uses getStaticProps) (ISR) incremental static regeneration (uses revalidate in getStaticProps)
 

Loading Comments...