nextjs port number code example
Example 1: nextjs change port
"scripts": {
"dev": "next -p 8080"
},
Example 2: run nextjs in separate port
npm run dev -- -p 3005
Example 3: how to change port in next js
scripts: { "dev": "next -p 8000" }
Example 4: how to change port in next js
how to change port in next js