This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://10.133.12.95:8000/polls/', //接口域名(你请求的第三方接口)
changeOrigin: true, //是否跨域 (虚拟的站点需要更管origin)
ws: true, //是否代理 websockets
secure: true, //是否https接口
pathRewrite: { //路径重置
'^/api': ''
}
};