webpack-dev-server proxy dosen't work
问题 I want to proxy /v1/* to http://myserver.com, and here is my script devServer: { historyApiFallBack: true, // progress: true, hot: true, inline: true, // https: true, port: 8081, contentBase: path.resolve(__dirname, 'public'), proxy: { '/v1/*': { target: 'http://api.in.uprintf.com', secure: false // changeOrigin: true } } }, but it doesn't work, 回答1: Update: thanks to @chimurai, setting changeOrigin: true is important to make it work. Underneath webpack-dev-server passes all the proxy