There was an error while loading. Please reload this page.
At Foretag we only support NextJS apps that are CSR and SSG.
To disable SSR and ISR
// App.tsx import dynamic from 'next/dynamic'; const App = ({ Component, pageProps }: AppProps) => { return <Component {...pageProps} /> } export default dynamic(() => Promise.resolve(App), { ssr: false });