mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
14 lines
362 B
TypeScript
14 lines
362 B
TypeScript
import { defineCollection, z } from "astro:content";
|
|
import { docsSchema } from "@astrojs/starlight/schema";
|
|
|
|
export const collections = {
|
|
docs: defineCollection({
|
|
schema: docsSchema({
|
|
extend: z.object({
|
|
schemaFile: z.string().optional(),
|
|
defName: z.string().optional()
|
|
})
|
|
})
|
|
})
|
|
};
|