-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Opinion] Is SSR still necessary? #1558
Comments
Take a look this video: Server-side Rendering with JavaScript Frameworks |
If you're building a public site, at a very least you need to do partial SSR - make sure that you pre-render Without full SSR you will also need to be extra careful not to introduce some fancy ES2017 syntax or language feature that Googlebot cannot understand. Otherwise, it will nullify all or some of your indexed pages degrading SEO. Surprisingly, Googlebot doesn't use the latest version of Chrome for rendering. On the other hand, if you're building an admin panel, CRM dashboard or something like that, you don't need SSR. |
I'm building a public site with full SSR based on this project, but recently I got into conversation with my friend who is also working on a public site with ReactJS and he claims that SSR is not really necessary anymore - so that's why I was interested in your opinion on that matter. Thanks for all the resources - they are helpful! |
SSR is still good for some use cases:
|
Google announced that it is using Chrome 41 engine to render sites -
https://developers.google.com/search/docs/guides/rendering . I wonder if this means that there is no longer need for server side rendering (or soon wont be)? What do you think?
The text was updated successfully, but these errors were encountered: