skip to Main Content

I have put up a small web app with next.js and would like to know from more experienced people if next.js Link component is SEO friendly (google knows how to crawl Link component) without using anchors tags?

2

Answers


  1. Yes it is. behind the scenes, it will be the normal <a> tag.

    <Link href="/about">
      <a>about</a>
    </Link>
    

    will be

     <a href="/about">about</a>
    

    You can check in inspector.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search