"use client"; import dynamic from "next/dynamic"; // The whole app is a client-side React Router SPA whose providers read window/localStorage // during their initial render -- ssr:false keeps Next's static prerender from ever executing // any of it on the server. const ClientApp = dynamic(() => import("../src/ClientApp"), { ssr: false }); export default function Page() { return ; }