修改next app的默认端口
When you are running your next.js application locally, default port is 3000. Since it is a commonly used port, you might have other service running on the same port.
You can set port number using below ways:
- package.json
In the scripts section of package.json, there will be a command for dev.
Usually it will be “dev”: “next”.
To set the port number, modify the package.json contents as below to make the port number to 3005 or any other number of your choice.
“dev”: “next dev -p 3005”
- specify port number in run command
While running your application, specify the port number. You can use the command like below:
npm run dev – -p 3005
- Title: 修改next app的默认端口
- Author: StoneHoo
- Created at : 2023-05-12 22:20:58
- Updated at : 2024-11-06 19:20:06
- Link: https://www.ozak.ca/2023/05/12/修改next-app的默认端口/
- License: This work is licensed under CC BY-NC-SA 4.0.
Comments