chore: review content configuration

This commit is contained in:
Francesca Giannino
2026-02-10 11:10:34 +01:00
parent 571a394a12
commit 642b0b124b
2 changed files with 0 additions and 2 deletions

View File

@@ -21,7 +21,6 @@ export type MenuItem =
export type MenuSection = { export type MenuSection = {
title?: string; title?: string;
basePath?: string; basePath?: string;
versioned?: VersionPrefix[];
items: MenuItem[]; items: MenuItem[];
omitFrom?: VersionPrefix[]; omitFrom?: VersionPrefix[];
}; };

View File

@@ -6,7 +6,6 @@ const docsCollection = defineCollection({
schema: z.object({ schema: z.object({
title: z.string(), title: z.string(),
description: z.string().optional(), description: z.string().optional(),
order: z.number().optional(),
}), }),
}); });