Skip to content

Commit b76aca6

Browse files
committed
fix: config merge
1 parent b1e7cb2 commit b76aca6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/builder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ exports.getBuilderConfig = (config = {}, option = {}) => {
4040
const filepath = path.isAbsolute(config) ? config : path.resolve(baseDir, config);
4141
if (fs.existsSync(filepath)) {
4242
const customFileConfig = require(filepath);
43-
return merge(baseConfig, customFileConfig, config);
43+
return merge(baseConfig, customFileConfig);
4444
}
4545
}
4646
return merge(baseConfig, config);

0 commit comments

Comments
 (0)