NodeJS Cambiar al host en NPM Ejecutar dev

//package.json
"scripts": {
    "dev": "next dev -H 172.22.123.129",
    "build": "next build",
    "start": "next start",
    "lint": "next lint"
  },
Cabz++