We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be79049 commit 91ededaCopy full SHA for 91ededa
src/utils/ConfigAccumalator.js
@@ -51,6 +51,7 @@ export default class ConfigAccumulator {
51
const filePageInfo = this.conf.pageInfo || {};
52
const pi = this.conf.pageInfo || defaults; // The page info object to return
53
pi.title = localPageInfo.title || filePageInfo.title || defaults.title;
54
+ pi.logo = localPageInfo.logo || filePageInfo.logo || defaults.logo;
55
pi.description = localPageInfo.description || filePageInfo.description || defaults.description;
56
pi.navLinks = localPageInfo.navLinks || filePageInfo.navLinks || defaults.navLinks;
57
pi.footerText = localPageInfo.footerText || filePageInfo.footerText || defaults.footerText;
0 commit comments