Skip to content

Commit 0726b1a

Browse files
author
Ryan A. Johnson
committed
fix(config): correct combined config
1 parent d3cb8f0 commit 0726b1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ CONFIG.cdn = {
9292
storage: {} // override in _config.private.js
9393
};
9494

95-
const combinedConfig = Object.assign({}, CONFIG, _privateConfig);
95+
const combinedConfig = _.merge({}, CONFIG, _privateConfig);
9696

9797
/* Define Exports */
9898
module.exports = combinedConfig;

0 commit comments

Comments
 (0)