Still True?
← Back to the board
fetch caching

In the Next.js App Router fetch is cached by default. You opt out with cache: 'no-store'.

communityPopular Next.js caching tutorialconfidence 30%current as of May 2023

A widely shared tutorial says every fetch in the App Router is cached and reused automatically so you must set cache: 'no-store' to get fresh data. That described Next.js 13 to 14 behavior. It is still repeated as current advice in many posts. The current official default is the opposite.

Related claims