From 3a219c0b074d08a68680b48fd136177eb790b4f5 Mon Sep 17 00:00:00 2001 From: Marcos Sastre Date: Wed, 21 Aug 2024 17:55:44 +1000 Subject: [PATCH] Update local.js - updated rasiely URL on target Target was pointing to "https://${campaign.path}.raisely.com" which return a redirection to "https://${campaign.path}.raiselysite.com" so the interception didn't work. Code changed to now it points directly to https://${campaign.path}.raiselysite.com --- src/local.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/local.js b/src/local.js index 8e6dd91..ad7354c 100644 --- a/src/local.js +++ b/src/local.js @@ -75,7 +75,7 @@ export default async function start() { // determine proxy target const target = config.proxyUrl ? config.proxyUrl.replace('https://', `https://${campaign.path}.`) - : `https://${campaign.path}.raisely.com`; + : `https://${campaign.path}.raiselysite.com`; const app = express();