DEV Community

Discussion on: How is Remix different from Next.js

Collapse
 
dabit3 profile image
Nader Dabit

Yeah I've been thinking more and more about this, but I think you've summed it up really well here.

Collapse
 
kylemathews profile image
Kyle Mathews • Edited

Zoom back a bit and it's all just caching :-D

SSGs just say treat caching/data-invalidation as a build-time concern (like code changes) not as a run-time concern as then you're not dealing w/ bugs w/ caching in a production environment. It's safer and easier to update your data cache through a build process. This of course doesn't always scale but for small to medium sites it's very nice.