I have this navigation column with Links like this:
<Link prefetch={false} href={getHref()}>
Click me
</Link>
Now when I click the Link i expect the url to change instantly but it doesnt. It is basically similar to this example (Right side where the Relevance links are):
https://commerce-v1.vercel.store/search/designers/next.js/featured?sort=trending-desc
There when I click on a Link it updates the url instantly which means I see the Loading skeleton.
So I am not sure if I have some sort of setup issue? Basically I am struggling to get the loading skeleton to show instantly on Click of a Link in my setup and I think it is because the URL is not being updated instantly.
Any help is appreciated 🙂