DEV Community

sohel1718
sohel1718

Posted on • Updated on

Improve SEO In React Sits's

When using React-JS in web development we face issue in SEO because of react is rendered on client side.
So when a crawler or a bot visit are site. It does not find any html code.
Because crawler's ignore JS code.
So we have to render are site on server so that crawler's can see the html.

For that we can use Next.js and If are site is in production then we can use some tools like react-helmet for dynamic head component and we can render the site on server.

Some links to refer

Top comments (0)