配置浏览器自动打开的时候,运行 npm run serve 命令成功启动 Vue 项目后,页面报错:无法访问此网站。网址为 http://0.0.0.0:8080/ 的网页可能暂时无法连接,或者它已永久性地移动到了新网址。
解决方法:在项目的 vue.config.js 文件中配置 devServer 属性。
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave: false,
devServer: {
open: true,
host: 'localhost',
port: 8080
}
})
版权归原作者 欣欣然张开了眼 所有, 如有侵权,请联系我们删除。