webpack server api proxy setop follow redirects code example
Example 1: webpack setup proxy manual
proxy: {
"/api": "http://localhost:3000",
"/alpha": {
target: "http://localhost:8080",
pathRewrite: { "^/alpha": "" }
},
"/bravo": {
target: "http://localhost:8080",
pathRewrite: { "^/bravo": "" }
},
"/charlie": {
target: "http://localhost:8080",
pathRewrite: { "^/charlie": "" }
},
...
"/zulu": {
target: "http://localhost:8080",
pathRewrite: { "^/zulu": "" }
},
}
Example 2: webpack setup proxy manual
proxy: [{
"/api": "http://localhost:3000",
},{
context: ['/alpha', '/bravo', '/charlie', '/zulu'],
target: 'http://localhost:8080',
rewrite: function (path, req) { return path.replace(/\/(.*?)/g, '') }
}]