From 0cc6415dfdd33638ec88fa672a3ea46b715999bd Mon Sep 17 00:00:00 2001 From: Igor Kamyshev Date: Mon, 8 Apr 2019 17:04:58 +0300 Subject: [PATCH] fix: follow redirect in proxy --- proxy/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/proxy/index.js b/proxy/index.js index a28feac3..eb5f599f 100644 --- a/proxy/index.js +++ b/proxy/index.js @@ -6,5 +6,6 @@ httpProxy .createProxyServer({ changeOrigin: true, target: UPSTREAM, + followRedirects: true, }) .listen(8000)