Is there any best way to handle filter's and pagination in Next js static site generation.
Asked
Active
Viewed 33 times
0
-
1There's no way to access query parameters in pages using SSG, as the page is generated at build time. You can try SSR or accessing the query parameters using `useRouter` on the client. – OGreeni Oct 07 '22 at 13:46