https://nextjs.frontendx.cn/docs/#%E5%AE%89%E8%A3%85

安装

  1. npm install --save next react react-dom

将下面脚本添加到 package.json 中:

  1. {
  2. "scripts": {
  3. "dev": "next",
  4. "build": "next build",
  5. "start": "next start"
  6. }
  7. }
  • npm run dev 运行项目,运行到别的端口 npm run dev -- -p 3001
  • npm run build 打包
  • npm run start 在服务器运行

路由

每个.js 文件将变成一个路由,自动处理和渲染。