adding docs site

This commit is contained in:
Jay V
2025-05-21 14:24:53 -04:00
parent 5f5f9dad87
commit 6cfcf51752
18 changed files with 1512 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() }),
};