同时代理api和资源:
//服务器代理 proxy: { '/api': { target: 'http://xxx', changeOrigin: true, pathRewrite: { '^/api/': '/api/', }, }, //media资源代理 '/media': { target: 'http://xxx', changeOrigin: true, pathRewrite: { '^/media': '/media', }, }, },
即可实现访问http://localhost/api/*和http://localhost/media/*时跳转到指定到http://xxx/api/*和http://xxx/media/*
标签:http,umijs,media,xxx,代理,api,服务器 From: https://www.cnblogs.com/wuhairui/p/17238972.html