@plyaz/core 1.8.0 → 1.8.1

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.
@@ -422,7 +422,7 @@ function getConfigForEnvironment(env) {
422
422
  }
423
423
  __name(getConfigForEnvironment, "getConfigForEnvironment");
424
424
  function validateBaseURL(mergedConfig, errors) {
425
- if (!mergedConfig.baseURL) {
425
+ if (mergedConfig.baseURL === void 0 || mergedConfig.baseURL === null) {
426
426
  errors.push("baseURL is required in API configuration (apiConfig parameter)");
427
427
  }
428
428
  }