nextjs Link태그에 _blank
본문 바로가기

Frontend/React

nextjs Link태그에 _blank

import Link from "next/link";

<Link href="https://www.naver.com" passHref>
    <a target="_blank" rel="noopener noreferrer">
      새 탭으로 링크열기
    </a>
</Link>

경로를 직접설정하는것보다 .env나 파일로 따로빼서 export후 호출

 

https://stackoverflow.com/questions/65632698/how-to-open-a-link-in-a-new-tab-in-nextjs

반응형