Updated to Astro 5. Cruft removed.

This commit is contained in:
Christoph Haas 2025-01-21 20:10:04 +01:00
parent 510ecc2094
commit 97c36c6a42
11 changed files with 819 additions and 1344 deletions

7
src/content.config.ts Normal file
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() }),
};