Dealing with a memory leak that maxes out our server memory pretty quickly.
Using the Chrome Devtools to inspect the heap, it seems to me as if the data in the ssrContext of Nuxt is never cleaned up on the server and duplicates are made for every request to the site.
Here's a heap snapshot after I did some automatic requests to our production build.
Each request generated this stringified data, which seems to contain everything in ssrContext, like data we fetched using useAsyncData and such.
Any idea if this is something I can mitigate, or if this is an issue with Nuxt itself?
Should I be looking into something specific?