You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
572 B

2 months ago
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://10.133.12.95:8000/polls/', //接口域名(你请求的第三方接口)
changeOrigin: true, //是否跨域 虚拟的站点需要更管origin
ws: true, //是否代理 websockets
secure: true, //是否https接口
pathRewrite: { //路径重置
'^/api': ''
}
}
}
}
};