I have a NextJS version 14.2.5 app router setup with only one route [[...slug]] with this content at the top of page.tsx:
export const dynamic = 'force-static';
export const generateStaticParams = async () => [];
export const revalidate = 120;
The problem is that after I do yarn build and yarn start and then navigate to any route - my layout and page gets rendered twice even if I have no state or extra content with barebones setup. This is causing me issues because I want to set up some data fetching at the route level and it runs twice. Any ideas why this route and layout is being re-rendered for each visit? And how can I fix that?