mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
✨ Pass clientExtensions to Ghost Admin (#8617)
no issue - pass through this additional config if it exists
This commit is contained in:
parent
79e4b08f0e
commit
117aeaa61d
1 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,8 @@ function getBaseConfig() {
|
||||||
publicAPI: config.get('publicAPI') === true,
|
publicAPI: config.get('publicAPI') === true,
|
||||||
blogUrl: utils.url.urlFor('home', true),
|
blogUrl: utils.url.urlFor('home', true),
|
||||||
blogTitle: settingsCache.get('title'),
|
blogTitle: settingsCache.get('title'),
|
||||||
routeKeywords: config.get('routeKeywords')
|
routeKeywords: config.get('routeKeywords'),
|
||||||
|
clientExtensions: config.get('clientExtensions')
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue