Skip to content

Instantly share code, notes, and snippets.

@micahlt
Created January 26, 2023 02:42
Show Gist options
  • Select an option

  • Save micahlt/dbe3050bc04abe18d97d4343e1f7f0d3 to your computer and use it in GitHub Desktop.

Select an option

Save micahlt/dbe3050bc04abe18d97d4343e1f7f0d3 to your computer and use it in GitHub Desktop.
Disable SSR for Next.js Page
export default dynamic(() => Promise.resolve(Page), {
ssr: false,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment