Started understanding Next js and trying to use along with React, while Next js addresses the SEO friendly topics such as SSR, default code-splitting, using pages directory it also forces to use <Link> components instead of <a>enabling the default client side transitions after the very first request, How can i send the request to server everytime ? Is there a way we can avoid client-side transitions and enable the browser default behavior.
Thanks in Advance
const Check = () => {
return (<Link href="/about"> <a> About </a> </Link>);
}
Using Link is mandatory and it disables the browser default loading ensuring the client transitions, How can we enable the browser default without client side transitions. I have seen the .eslint json specific config in their documentation and unable to find any property for that.
EDIT: