Javascript – Does cache: 'no-store' in fetch make a component behave like it's client-side rendered in Next.js?
I'm currently working with Next.js and using the fetch method to retrieve data: const res = await fetch(`${process.env.url}/test`, { cache: 'no-store', }) As I understand it, specifying cache: 'no-store' should force a new data fetch each time a user loads…