module.exports = { lintOnSave: false, // 当保存时不进行eslint的检查 devServer: { open: true, // 自动打开 port: 8081, //修改启动的端口号 // 本身发的请求 http://localhost:8080/api/product/getBaseCategoryList // 代理会把服务器地址改为真实的目标地址http://39.98.123.211/api/product/getBaseCategoryList proxy: { "/api": { target: "http://192.168.0.19", // pathRewrite: {"^/api" : ""} changeOrigin: true, } } } }