How to Open a New Link in a New Tab in Nextjs

September 14, 2022

nextjs

Nextjs optimizes links using the Link component. However, creating external links can be confusing. Create external links by adding the target attributes to the a tag inside the Link component.

<Link href={url}> <a target="_blank">External link</a> </Link>