Initial Commit

This commit is contained in:
kossLAN 2026-06-06 23:08:48 -04:00
commit 0534f88f70
No known key found for this signature in database
14 changed files with 5590 additions and 0 deletions

31
astro.config.mjs Normal file
View file

@ -0,0 +1,31 @@
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
export default defineConfig({
integrations: [
starlight({
title: "Wry Config Docs",
description: "Generated documentation for the Wry TOML configuration format.",
customCss: ["./src/styles/custom.css"],
sidebar: [
{
label: "Start",
items: [
{ label: "Overview", slug: "" },
{ label: "Raw Generated Specs", slug: "reference/raw-specs" }
]
},
{
label: "Reference",
items: [
{ label: "Top-Level Config", slug: "reference/config" },
{
label: "Configuration Types",
items: [{ autogenerate: { directory: "reference/types" } }]
}
]
}
]
})
]
});