So I have an issues using next router.
In my project I have something similar to
/blog/[id].tsx
This [id].tsx does a getServerSideProps where it fetches the correspoding information from a database and passes that to the page.
Now when I do router.push() from anywhere in the application everything works fine.
How ever I have some blog posts that reference others.
Now when I do router.push("/blog/1234") while being on /blog/1 for example only the url changes.
So the url now is /blog/1234, but the content that is displayed is still the one of /blog/1
A work around is just using window.location.replace, but I'm not really happy with that solution und would prefer using next router.
Thanks for your help!