1.在vue项目根目录下新建vue.config.js(不是在src下面)
vue.config.js配置文件:
module.exports = { // 基本路径 baseURL已经过时 publicPath: './', // 输出文件目录 outputDir: 'dist', // eslint-loader 是否在保存的时候检查 lintOnSave: true, // use the full build with in-browser compiler"htmlcode">host: 'www.test.com',//自定义域名 port: 1234,//自定义端口在本地hosts末尾添加127.0.0.1 www.test.com
重启项目==>使用域名加端口号访问:http://www.test.com:1234