feat(content-docs): allow SEO metadata for category index pages (#6239)

This commit is contained in:
Joshua Chen 2022-01-06 18:31:01 +08:00 committed by GitHub
parent e1d1618039
commit 3cb99124de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 31 additions and 2 deletions

View file

@ -30,8 +30,17 @@ export async function createCategoryGeneratedIndexRoutes({
async function createCategoryGeneratedIndexRoute(
categoryGeneratedIndex: CategoryGeneratedIndexMetadata,
): Promise<RouteConfig> {
const {sidebar, title, description, slug, permalink, previous, next} =
categoryGeneratedIndex;
const {
sidebar,
title,
description,
slug,
permalink,
previous,
next,
image,
keywords,
} = categoryGeneratedIndex;
const propFileName = slugs.slug(
`${version.versionPath}-${categoryGeneratedIndex.sidebar}-category-${categoryGeneratedIndex.title}`,
@ -42,6 +51,8 @@ export async function createCategoryGeneratedIndexRoutes({
description,
slug,
permalink,
image,
keywords,
navigation: {
previous,
next,