module.exports = {
outputDir: 'dist', // build输出目录
lintOnSave: false, // 是否开启eslint
devServer: {
open: true, // 是否自动弹出浏览器页面
host: 'localhost',
port: '8080',
https: false, // 是否使用https协议
hotOnly: false, // 是否开启热更新
proxy: {
'/api': {
target: 'http://xxxx.cn:90', // 换上你的接口主路经
ws: true, // 代理websockets
changeOrigin: true, // 虚拟的站点需要更管origin
pathRewrite: {
// 重写路径 比如'/api/aaa/ccc'重写为'/aaa/ccc'
'^/api': ''
}
}
}
}
}
在main.js中配置
axios.defau