Appearance
other options
- build :生成 .next 文件
- start:开启 nodejs 服务器,包含静态生成、服务端渲染、API Routes 混合页面
json
{
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
}
}1
2
3
4
5
6
7
2
3
4
5
6
7