mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-20 12:37:01 +02:00
fix(v2): Allow footer logo at attribute to be empty (#3817)
This commit is contained in:
parent
d25a54f61d
commit
1fafdb0d33
2 changed files with 21 additions and 1 deletions
|
@ -254,7 +254,7 @@ const ThemeConfigSchema = Joi.object({
|
|||
footer: Joi.object({
|
||||
style: Joi.string().equal('dark', 'light').default('light'),
|
||||
logo: Joi.object({
|
||||
alt: Joi.string(),
|
||||
alt: Joi.string().allow(''),
|
||||
src: Joi.string(),
|
||||
href: Joi.string(),
|
||||
}),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue