nuxt構成IPとポートの指定によるアクセス


非常に簡単で、構成を追加するだけです!
ステップ1で、このコードをコピーします(ポートは変更可能です)
 "config": {
    "nuxt": {
      "host": "0.0.0.0",
      "port": "8090"
    }
  },

ステップ2では、ルートディレクトリの下にあるpackageを見つけます.json、コードを貼り付けます.
これはすべてのコードで、私のところは8~13行に配置されています.
{
  "name": "guanWangPhone",
  "version": "1.0.0",
  "description": "My bee's knees Nuxt.js project",
  "author": "kason",
  "private": true,

  "config": {
    "nuxt": {
      "host": "0.0.0.0",
      "port": "8090"
    }
  },
  
  "scripts": {
    "dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
    "build": "nuxt build",
    "start": "cross-env NODE_ENV=production node server/index.js",
    "generate": "nuxt generate"
  },
  "dependencies": {
    "cross-env": "^5.2.0",
    "element-ui": "^2.4.11",
    "koa": "^2.6.2",
    "nuxt": "^2.0.0",
    "postcss-px2rem": "^0.3.0"
  },
  "devDependencies": {
    "node-sass": "^4.13.0",
    "nodemon": "^1.18.9",
    "sass-loader": "^8.0.0",
    "scss-loader": "0.0.1"
  }
}