新建vue.config.js,
// vue.config.js module.export = { dev: { proxyTable: { '/api': { target: 'http://localhost:80', //后端接口地址 changeOrigin: true, //是否允許跨越 pathRewrite: { '^/api': '', //重寫, } } } } }

目標url由
http://localhost:80/arcgis/API/4.15/init.js
改為
/api/arcgis/API/4.15/init.js
即可
