Hi There,
Wondering if there is any work happening around the prefetching of routes. (Not to be confused with pre-rendering/ssg). Tanstack and Remix have solutions here with data being strongly tied to routes with their loader patterns. I think NextJS have done stuff as well.
I think In the past I have done things like put something like this on mouseOver or a Link to try and get data a little earlier e.g
client.query({
query: GET_DOGS,
})
}
What will be the story with RSC?