next-urql not prefetching subsequent pages via next/link #2116
-
I've been trying to look for documentation on this, but I can't seem to find anything relevant. It appears that prefetching pages via The
Is this expected? Is there any way to allow nextjs' default prefetching behavior to work? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is not possible until either first-class support for |
Beta Was this translation helpful? Give feedback.
This is not possible until either first-class support for
suspense
is present in Next, you can however consider usinggetServerSideProps
/getStaticProps
which can circumvent this issue at the cost of being a bit more vigilant when building out your application.