docs/src/content/config.ts

7 lines
190 B
TypeScript
Raw Normal View History

2024-03-17 03:25:35 +01:00
import { defineCollection } from 'astro:content';
import { docsSchema } from '@astrojs/starlight/schema';
export const collections = {
docs: defineCollection({ schema: docsSchema() }),
};