next.js开发指南
npx create-next-app@latest
手动安装:
npm install next@latest react@latest react-dom@latest
配置脚本
{ "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "lint": "next lint" } }