I have the problem with Nuxt 3 and Vercel, that I want to exclude some paths from caching. I tried out different Cache control headers, but somehow every request get's cached.
Here are my headers: "Cache-Control": "private, no-cache, no-store, must-revalidate", . In the screenshot, you can see that we always get a HIT and the age is increasing with every page refresh. Thus, my headers are ignored.
Which headers shall I use to exclude those pages from the edge cache?

