- Add serve.py to resolve clean Quartz URLs to .html files - Regenerate Quartz site with correct baseUrl http://100.118.5.51:9120 - 196 HTML files emitted; all internal links now resolve
11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
// populates missing values
|
|
module.exports = function(dst, src) {
|
|
|
|
Object.keys(src).forEach(function(prop)
|
|
{
|
|
dst[prop] = dst[prop] || src[prop];
|
|
});
|
|
|
|
return dst;
|
|
};
|