is there a way to fix scroll only for a specific page with Next.js?
The situation is as follows.
There are A page and B page in Next.js
Go from Page A to Page B using "Router.push"
Scroll on page A (assuming you scroll down to 5000 scroll.y)
Go to page B
press the browser's back button to return to page A from page B.
scroll is 0
What I want to do is to keep the initial scroll(5000) state at 6.(even if click return to back button)
I want to fix the scroll instead of recording the scroll position back (for example local storage)
please let me know if there is any good way.
Thanks for reading my question.