I have a page when I want to render list of items that come form DB. This list frequently changes so I need to get fresh request every time I access the page. The page is async and I fetch data server side. I am using app router and next js 14.
export default async function Page() { const { data, total_count } = await getItems(); return .. }
Why next js is building this page as static and even when I add new items to db the list remains the same? Should not the be dynamicaly fetched every at each request?