waldoibarra / portfolio

My very own portfolio website to showcase myself! ❤️
https://waldoibarra.com
MIT License
0 stars 0 forks source link

Install best React framework option for good SEO without a server #17

Open waldoibarra opened 1 year ago

waldoibarra commented 1 year ago

Definition of Ready

Should investigate for the best rendering strategy, keeping in mind this is a simple static site (so, no Remix or SSR):

Definition of Done

waldoibarra commented 1 year ago

Decision: SSG using Next.js.

According to this post (React SEO: Best Practices to Make It SEO-Friendly), not all search engines (like Bing) do not fully support JavaScript rendering. For such reasons, standalone React is not chosen because it does client side rendering leading to poor SEO on search engines that are not Google.

Next.js has documentation (Static HTML Export) to enable SSG on build time.