Created
January 26, 2023 02:42
-
-
Save micahlt/dbe3050bc04abe18d97d4343e1f7f0d3 to your computer and use it in GitHub Desktop.
Disable SSR for Next.js Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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