2

Using next/link

<Link href="/examples/fetch-rest-data" >
     <a>SWR</a>
</Link>

I get an absolute href on the HTML

<li>
    <a href="https://localhost/examples/fetch-rest-data">SWR</a>
</li>

But i need the html to have a relative href

<li>
    <a href="/examples/fetch-rest-data">SWR</a>
</li>

0 Answers0