I'm doing something like this:
const aaa = (await useFetch(...)).data;
const bbb = (await useFetch(...)).data;
The first request is fetched on the server and just passed to the client, but subsequent requests are always executed on the client, and I cannot figure out why. What's stranger is that if I reverse the order of the requests, the second request is still done on the client. It has nothing to do with the API itself, I even tried other APIs just to see. I also tried using useAsyncData with $fetch inside, but that yields the same result.
Any ideas?