Hi, I am having a caching issue with my SSR page. No matter how many times I refresh the app, or how long I wait before refreshing, the same content is being returned. I have verified that the content in the back-end has changed (by querying the GraphQL API via Apollo Studio). The problem is that the Next.js server is simply not calling that API and returning the cached copy of the page (this is in development mode).
I checked the Cache-Control header in the response and it says "no-store, must-revalidate" - as it should, so caching should be disabled. I also explicitly disabled my chrome cache in dev tools. Still no luck 😦
Any clue what's going on?
Here's my repo if you want to take a peek. The specific page in question is here: https://github.com/nareshbhatia/proshop-nx/blob/main/apps/cart/pages/index.tsx#L27-L59