Comment on nobody in webdev knows what graceful degradation is anymore
frezik@lemmy.blahaj.zone 2 weeks agoIt has nothing to do with SEO. We do server side rendering because it’s the simplest thing that works.
Comment on nobody in webdev knows what graceful degradation is anymore
frezik@lemmy.blahaj.zone 2 weeks agoIt has nothing to do with SEO. We do server side rendering because it’s the simplest thing that works.
moseschrute@lemmy.world 2 weeks ago
It’s simple when it’s all SSR or it’s all client side rendered (CSR). In my experience, mixing is when the headache sets in. There are benefits to SSR and CSR. You want a webpage that works without JavaScript, use SSR. You want a persistent video player that continues the current video as you navigate pages on your site, use CSR.