l最近在我的本地计算机上安装了nuxt.js并创建了一个新项目,当我运行npm run dev时,它说该项目正在http://localhost:3000上侦听,但在单击该链接后,连接没有通过,它说了以下信息
无法访问此站点本地主机拒绝连接。 您是说http://localhost3000.org/吗? 在Google中搜索localhost 3000 ERR_CONNECTION_REFUSED
答案 0 :(得分:0)
一种简单的方法是将此代码写入您的package.json
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3000"
}
},
这是因为0.0.0.0
表示服务器中所有ipv4
的地址。但是localhost
和127.0.0.1
不是。