From 26a3c7243e32788fcc79f88d60657197c2646d39 Mon Sep 17 00:00:00 2001 From: Caryl Wyatt Date: Wed, 16 Apr 2025 13:55:55 -0400 Subject: [PATCH] add 'apahce-test' as localhost prefix for domains --- src/js/lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/lib/utils.js b/src/js/lib/utils.js index 8181ef1..028f95e 100644 --- a/src/js/lib/utils.js +++ b/src/js/lib/utils.js @@ -34,7 +34,7 @@ function setDomains() { if (HT.is_dev) { var prefix = hostname.split('.')[0]; console.log('-- main setting hostname', prefix, hostname); - if (prefix == 'localhost') { + if (prefix == 'localhost' || prefix == 'apache-test') { if (location.port) { hostname += ':' + location.port; }