admin管理员组

文章数量:1420174

I am using getServerSideProps to improve SEO. So if someone access the route directly all the content should be delivered in the server request. But in case i am navigating to that site via next/link or router.push I want to avoid getServerSideProps and load the data in the client or retrieve it from the client cache. I already read a lot about this, but I did not find any satisfying solution.

Thanks for any help :)

本文标签: nextjsHow to avoid running getServerSideProps on client side routingStack Overflow