DEV Community

Discussion on: CRA vs CNA.When to use create-react-app and when nextjs?

Collapse
 
sergiodxa profile image
Sergio Daniel Xalambrí

Next also supports Static Site Generation (SSG) and Incremental SSG, with this the problem when you need to fetch a lot of data on each render disappears.

You can also use it to build client-side only apps, making Next generate a skeleton UI at build time (with SSG) and filling it with data at runtime client-side.