From 3268cca4520bf50144cd7b34c437c459ea31c065 Mon Sep 17 00:00:00 2001 From: rdbsolutions Date: Wed, 21 Jul 2021 10:36:49 +0100 Subject: [PATCH] removed port --- actions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/index.js b/actions/index.js index 23c68336..40e1adbc 100644 --- a/actions/index.js +++ b/actions/index.js @@ -5,7 +5,7 @@ import https from "https"; process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0; let BASE_URL; -BASE_URL = process.env.API_ROOT || "http://localhost:3000"; +BASE_URL = process.env.API_ROOT || "http://localhost"; const agent = new https.Agent({ rejectUnauthorized: false,