Router.push always does full page reload #14300
-
Hello, I have a url like Unfortunately, this always attracts a full-page reload. thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
You can check the example here - https://github.com/desaijay315/movie_list_nextjs_app |
Beta Was this translation helpful? Give feedback.
-
And just like that I found the answer. I was using I did:
|
Beta Was this translation helpful? Give feedback.
And just like that I found the answer. I was using
.push
the wrong way:I did:
Router.push('/item/123')
instead ofRouter.push('/item/[id]', '/item/123')