Initial commit from Astro

This commit is contained in:
houston[bot] 2024-10-19 22:43:34 +02:00 committed by Christoph Haas
commit df84b9c4a2
15 changed files with 5480 additions and 0 deletions

6
src/content/config.ts Normal file
View file

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