From 3f5bae0aec310286f9d5bf49587146d038e76894 Mon Sep 17 00:00:00 2001 From: Rafael Cordones Date: Thu, 29 Mar 2018 17:58:40 +0200 Subject: [PATCH] Enable proxy debug logging to easy troubleshooting (fixes #7) --- proxy.conf.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/proxy.conf.js b/proxy.conf.js index ee1c547..c5b6363 100644 --- a/proxy.conf.js +++ b/proxy.conf.js @@ -3,6 +3,7 @@ module.exports = { "/api/*": { target: "http://localhost:8080", secure: false, - changeOrigin: true + changeOrigin: true, + logLevel: "debug" } };