Docs: migrate to Astro Starlight

This commit is contained in:
Lovell Fuller
2025-01-16 12:55:45 +00:00
parent 14c83e1f4c
commit eeac8d4656
39 changed files with 279 additions and 505 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() }),
};