标签:cli 开启 create rewrite 代理服务 根目录 axios localhost targe
cnpm i @vue/cli -g
vue create myproject(项目名)
# vue.config.js
module.exports = {
devServer: {
host: ‘localhost‘,
port: 8080,
proxy: {
‘/api‘: {
target: ‘http://localhost:3000‘,// 要跨域的域名
changeOrigin: true, // 是否开启跨域
},
‘/get‘: {
target: ‘http://localhost:3000‘,// 要跨域的域名
changeOrigin: true, // 是否开启跨域
pathRewrite: {
‘^/api‘: ‘/api‘ // 这种接口配置出来 http://XX.XX.XX.XX:8083/api/login
//‘^/api‘: ‘/‘ 这种接口配置出来 http://XX.XX.XX.XX:8083/login
}
}
}
}
axios.get(‘http://localhost:8080/api/login‘)
标签:cli 开启 create rewrite 代理服务 根目录 axios localhost targe
原文地址:https://www.cnblogs.com/greemmao/p/14315119.html