igaozp / notes

个人笔记 & 博客文章备份
MIT License
3 stars 2 forks source link

修改 Vue.js 项目默认的端口 #18

Open igaozp opened 6 years ago

igaozp commented 6 years ago

使用 vue-cli 构建 Vue.js 项目时,项目的默认端口被设为 8080,可能会与其他的服务端口产生冲突,可以在项目根目录下的 config 文件中的 index.js 文件中进行修改,例如:

dev: {  
  env: require('./dev.env'),  
  port: 4000,  
}