@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.
@@ -171,7 +171,7 @@ function getConfigForEnvironment(env) {
171
171
  }
172
172
  __name(getConfigForEnvironment, "getConfigForEnvironment");
173
173
  function validateBaseURL(mergedConfig, errors) {
174
- if (!mergedConfig.baseURL) {
174
+ if (mergedConfig.baseURL === void 0 || mergedConfig.baseURL === null) {
175
175
  errors.push("baseURL is required in API configuration (apiConfig parameter)");
176
176
  }
177
177
  }