Created Starlight project

This commit is contained in:
2026-07-14 14:04:21 +02:00
parent c112b44a0e
commit db35cc2b97
26 changed files with 5590 additions and 0 deletions
+7
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() }),
};