node+express模拟数据(三)03——vue.config.js配置跨域
在src同层级新建vue.config.js文件
// vue.config.js
module.exports = {
lintOnSave: false,
devServer: {
open: true,
host: 'localhost',
port: 8080,
https: false,
//以上的ip和端口是我们本机的;下面为需要跨域的
proxy: {
//配置跨域
'/api': {
// target: 'http://192.168.79.1:3000/',// 本机IP
// target: 'http://localhost:3000/test',// test-接口前缀字段
// target: 'http://10.88.155.43/tkweb-legal-platform/lumen/public/rest/', //这里后台的地址模拟的;应该填写你们真实的后台接口
target: 'http://localhost:3000/', //这里后台的地址模拟的;应该填写你们真实的后台接口
ws: true,
changOrigin: true, //允许跨域
pathRewrite: {
'^/api': '' //请求的时候使用这个api就可以
}
}
}
}
}