React Query and Next SSG #2050
-
Am i right in thinking that there is not much benefit to using React Query when creating a SSG Next.JS site. Am I missing anything as I am just at the point of ripping out many of my hooks. My implantation if of interest can be found at https://github.com/esharmony/personal-blog-nextjs, it was my first attempt at using react query so be kind : ) seriously though always happy for pointers information and help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
As long as you do not need any of the data on the site to update during the user's session (which would require some kind of runtime querying), you do not need React Query :) |
Beta Was this translation helpful? Give feedback.
As long as you do not need any of the data on the site to update during the user's session (which would require some kind of runtime querying), you do not need React Query :)