DEV Community

Discussion on: Understanding SSR, CSR, ISR, and SSG: A Comprehensive Guide

Collapse
 
sip profile image
Dom Sipowicz • Edited

My SEO strategy would be as follows:

  • If all pages can be built at build time and are static, go for SSG first

  • In order to decrease the build time, I would use ISR and prebuild the most important pages, such as main categories, and the rest would be built organically later on, on Runtime.

  • When I have lots of pages or everything is dynamic, I would choose SSR.

In terms of speed for users, this is the way: SSG -> ISR -> SSR.

Collapse
 
gersonlimadev profile image
Gerson Lima

In terms of speed for users, this is the way: SSG -> ISR -> SSG.

just a little correction:
In terms of speed for users, this is the way: SSG -> ISR -> SSR.

Collapse
 
sip profile image
Dom Sipowicz

yes. lol my bad! thanks for correcting