Next.js and SSR-Building high-performance server-rendered applications
1. Create a project
Create a new Next.js project with the create-next-app scaffold:
npx create-next-app my-app
cd my-app
2. Automatic SSR
In Next.js, each component of a .js or .jsx file will be automatically processed as an SSR page. For example, c...
tech.tianyaschool.com5 min read