astro-ghostcms/playgrounds/starlight-playground/src/content/config.ts

6 lines
189 B
TypeScript

import { defineCollection } from 'astro:content';
import { docsSchema } from '@astrojs/starlight/schema';
export const collections = {
docs: defineCollection({ schema: docsSchema() }),
};