Server Actions in next.js seem to be running in ‘series’
I have a next.js
app which needs to make 5 requests to an external resource (only accessible on the server side), so from the ‘client’ component, when the user clicks a button, I use the async pattern to make the 5 calls, and deal with the response. However, I’m finding that even though I’m using promises, the server side seems to queue these server actions.