我试图用vue制作一些应用程序并安装了npm命令。
当我运行“ npm run serve”命令时,收到以下消息。 看来我应该在“ http:// localhost:8080 /”上运行应用程序,并且能够访问示例页面,而不是诸如“ x86_64-apple-darwin13.4.0:”之类的东西。
是否可以通过更改配置文件或其他方式解决此问题?
App running at:
- Local: http://x86_64-apple-darwin13.4.0:8080/
- Network: http://x86_64-apple-darwin13.4.0:8080/
Note that the development build is not optimized.
To create a production build, run npm run build.
我应该访问http:// localhost:8080 /并获得一些示例页面。
答案 0 :(得分:3)
似乎您的主机环境已设置为x86_64-apple-darwin13.4.0
,您应该可以像这样在bash_profile
中设置变量
HOST="localhost"
之后,用source ~/.bash_profile
答案 1 :(得分:0)
好像您可以在这里找到问题的答案-https://forum.vuejs.org/t/npm-run-serve-is-not-defaulting-to-localhost/88007/13。
简而言之:
如果没有vue.config.js文件,则在根目录(与package.json文件相同)中添加
将以下设置添加到vue.config.js
module.exports = {
devServer: {
host: '127.0.0.1',
port: 8080,
public: 'localhost:8080',
}
}