We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f5678b commit eb22a84Copy full SHA for eb22a84
1 file changed
packages/b2c-tooling-sdk/src/config/resolver.ts
@@ -166,7 +166,7 @@ export class ConfigResolver {
166
// Earlier sources have higher priority - later sources only fill in missing values
167
for (const source of this.sources) {
168
const result = source.load(enrichedOptions);
169
- if (result) {
+ if (result && result.config) {
170
const {config: sourceConfig, location} = result;
171
const fields = getPopulatedFields(sourceConfig);
172
if (fields.length > 0) {
0 commit comments