nest-next
nest-next copied to clipboard
How to shallow render with next useRouter hooks?
i'm trying to pagination with query string (?page=1)
await router.push(`/board?page=${query.page}`, undefined, { shallow: true })
but router.push (also router.replace) with shallow option reload whole application how can i change query string with useRouter without refresh page? (replace table content only from query change)
any solutions?