mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-21 12:33:49 +01:00
11 lines
303 B
TypeScript
11 lines
303 B
TypeScript
import { defineCollection } from "astro:content";
|
|
import { glob } from "astro/loaders";
|
|
import { docsSchema } from "@astrojs/starlight/schema";
|
|
|
|
export const collections = {
|
|
docs: defineCollection({
|
|
loader: glob({ pattern: "**/*.(md|mdx)", base: "../guides" }),
|
|
schema: docsSchema(),
|
|
}),
|
|
};
|