We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 });