DEV Community

Cover image for Ne(u)xt.JS SSR with dynamic metadata
deexter
deexter

Posted on

Ne(u)xt.JS SSR with dynamic metadata

Hi,
In my recent project we decided to use server side rendering to increase SEO.

Our goal is to store metadata like title and etc in CMS like contentful.
So we have to make for every request for page request to contentful.

This slowing down response even if it is very fast.
This cost just 1 request, but what if I want data for my client side application?
Sometimes query could be very slow.

Is there possibility to render meta tags server side and rest of content with SPA?
I thing this will have negative impact for SEO.

Is there any other and better way, than static site generator?

Have you ever struggled with this?
I’ll be very happy if you share your experience.

Top comments (0)