feat(pages): Support frontMatter.slug like docs and blog plugins (#11088)

This commit is contained in:
Sébastien Lorber 2025-04-11 14:44:19 +02:00 committed by GitHub
parent ac0a6f7d5b
commit 5b944d6b64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 23 additions and 9 deletions

View file

@ -22,6 +22,7 @@ const PageFrontMatterSchema = Joi.object<PageFrontMatter>({
description: Joi.string().allow(''),
keywords: Joi.array().items(Joi.string().required()),
image: URISchema,
slug: Joi.string(),
wrapperClassName: Joi.string(),
hide_table_of_contents: Joi.boolean(),
...FrontMatterTOCHeadingLevels,