DEV Community

Discussion on: How to Disable Server-Side Rendering (SSR) in Next.js

 
apkoponen profile image
Ari Koponen

Haven’t tried to do that, so not sure. Using next/dynamic might lead to one additional JS bundle.

Also, if you want multiple entrypoints (like pages/index.js and pages/account.js) you’d need to remember to do the dynamic import in each file separately.