Skip to content

Commit 91ededa

Browse files
committed
🩹 Read logo from local storage, if available
1 parent be79049 commit 91ededa

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/utils/ConfigAccumalator.js

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export default class ConfigAccumulator {
5151
const filePageInfo = this.conf.pageInfo || {};
5252
const pi = this.conf.pageInfo || defaults; // The page info object to return
5353
pi.title = localPageInfo.title || filePageInfo.title || defaults.title;
54+
pi.logo = localPageInfo.logo || filePageInfo.logo || defaults.logo;
5455
pi.description = localPageInfo.description || filePageInfo.description || defaults.description;
5556
pi.navLinks = localPageInfo.navLinks || filePageInfo.navLinks || defaults.navLinks;
5657
pi.footerText = localPageInfo.footerText || filePageInfo.footerText || defaults.footerText;

0 commit comments

Comments
 (0)