We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1e7cb2 commit b76aca6Copy full SHA for b76aca6
1 file changed
lib/builder.js
@@ -40,7 +40,7 @@ exports.getBuilderConfig = (config = {}, option = {}) => {
40
const filepath = path.isAbsolute(config) ? config : path.resolve(baseDir, config);
41
if (fs.existsSync(filepath)) {
42
const customFileConfig = require(filepath);
43
- return merge(baseConfig, customFileConfig, config);
+ return merge(baseConfig, customFileConfig);
44
}
45
46
return merge(baseConfig, config);
0 commit comments