@stemy/ngx-utils 11.2.3 → 11.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3227,7 +3227,7 @@
3227
3227
  url = url ? "" + url.replace(/\/+$/, "") + ending : ending;
3228
3228
  url = url.replace("[project]", project);
3229
3229
  url = this.universal.isServer && url.startsWith("//") ? "http:" + url : url;
3230
- return url.startsWith("/") ? this.loadedConfig.baseUrl + url.substr(1) : url;
3230
+ return url.startsWith("/") ? this.loadedConfig.baseDomain + url.substr(1) : url;
3231
3231
  };
3232
3232
  ConfigService.prototype.getConfigValue = function (key) {
3233
3233
  return this.loadedConfig[key];