/ config/index.js
proxyTable: {
    // proxy all requests starting with /api to jsonplaceholder
    "/api": {
        target: "https://xxxxxxx.com/",
        changeOrigin: true,//
        changeOrigin: true,
        pathRewrite: {
            "^/api": ""
        }
    }
},development mode, and the request can be sent to the test server, but can not be found after packaging.
 error report * n: 
 Failed to load resource: the server responded with a status of 404 (Not Found) 
  http://localhost:9000/api/app/getCheckNumImg.action
the picture won"t come up, so let"s replace it with words.
how do you make the packaged request point to the real test server address?
