Added docs

This commit is contained in:
2025-10-14 01:35:13 -06:00
parent d57149d29c
commit 4559d5e2f2
21 changed files with 4516 additions and 0 deletions

View File

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