DEV Community

Discussion on: Building My Personal Site – Part 2: Setting Up Gatsby with a Starter Site

Collapse
 
flexdinesh profile image
Dinesh Pandiyan

CMIIW.

As great as Gatsby is I see a lot of people mentioning Gatsby is SSR out of the box. But Gatsby is not SSR.

Gatsby only generates static files from your code.

Unless you serve your files rendered from a node server, your site is not SSR.

Collapse
 
ekafyi profile image
Eka

Yeah, I was using the term very loosely I realised, as in "not rendered in the client (browser)".

Good insight, and yes I agree (incidentally, this is discussed briefly in this article I've just been reading: dev.to/narative/understanding-gats...).