Next.js Rendering: Quick Notes

Understanding how SSG, SSR, and CSR work in Next.js

Facts

  • • Demonstrates SSG, SSR, and CSR differences
  • • Each page fetches same data
  • • Different rendering strategies
  • • SSG: Same data every time
  • • SSR & CSR: Different data each time

Notes

📝 Click each page and see how they differ! Check HTML source, Network tab, and notice when data loads.

💡 Refresh SSR page to see new data each time. Inspect DevTools to see the difference!