Javascript – Next.js 15: fetch request is still cached by default
According to the Next.js blog and documentation fetch requests are no longer cached by default since Next.js 15: https://nextjs.org/blog/next-15 https://nextjs.org/docs/app/api-reference/functions/fetch#optionscache However, if I send the same request twice in a component, the second request is still cached. To reproduce it…