Some checks are pending
Build Ghidra Plugin / build (push) Waiting to run
Starlight/Astro docs site following the warehack.ing cookie-cutter pattern. Landing page with architecture overview, getting-started guide with install and firmware import examples, Docker reference with env vars and port pool docs, and MCP tools reference. Warm amber/rust color scheme. Caddy prod + Node dev Docker stages.
8 lines
270 B
TypeScript
8 lines
270 B
TypeScript
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() }),
|
|
};
|