/* * @Author: your name * @Date: 2021-10-20 13:15:16 * @LastEditTime: 2021-10-20 13:45:55 * @LastEditors: Please set LastEditors * @Description: In User Settings Edit * @FilePath: /data-show/vue.config.js */ module.exports = { devServer: { port: "8081", proxy: { '/sws': {//代理api target: "http://cloud.sws010.com",// 代理接口 changeOrigin: true,//是否跨域 ws: true, // proxy websockets pathRewrite: {//重写路径 "^/sws": ''//代理路径 } } } } }