webpack react proxy not working

Solutions on MaxInterview for webpack react proxy not working by the best coders in the world

showing results for - "webpack react proxy not working"
Oscar
22 Feb 2016
1//add this config in WebpackDevServer
2
3proxy: {
4  '/api': {
5    target: 'http://localhost:4000',
6      changeOrigin: true,
7  },
8},