Nodejs Alterar o host no NPM Run Dev
//package.json
"scripts": {
"dev": "next dev -H 172.22.123.129",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
Cabz++