Google has been able to index and address js-based website for a ~decade #2
-
We used to do such things back in the day, but since many years it seems Google SEO has no problem indexing pages which requires JS to load content (from an API for example), so why would anyone want to pre-render now in 2024? it was a huge thing back in 2013... |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
@yairEO For this reason, many news and broadcasting media outlets still use prerendering services. I speak from experience as I worked in a large Canadian media company. Another important factor to consider is that the SEO world isn't limited to Google. Various bots, including those from other search engines and platforms like Facebook, require correctly rendered pages for optimal sharing and visibility. Lastly, the choice between client-side rendering (CSR) and server-side rendering (SSR) depends on your specific needs. Google Search Console provides valuable metrics and information about your app, so it might be worth considering SSR if that better aligns with your requirements. |
Beta Was this translation helpful? Give feedback.
-
@yairEO
|
Beta Was this translation helpful? Give feedback.
@yairEO
Yes, Google can render your content handled by JavaScript, but Googlebot allows only a few milliseconds for rendering. If your page isn't rendered within that time frame, it may be penalized.
For this reason, many news and broadcasting media outlets still use prerendering services. I speak from experience as I worked in a large Canadian media company.
Another important factor to consider is that the SEO world isn't limited to Google. Various bots, including those from other search engines and platforms like Facebook, require correctly rendered pages for optimal sharing and visibility.
Lastly, the choice between client-side rendering (CSR) and server-side rendering (SSR) depends on…