Initial Commit
This commit is contained in:
commit
0534f88f70
14 changed files with 5590 additions and 0 deletions
31
astro.config.mjs
Normal file
31
astro.config.mjs
Normal 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" } }]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
})
|
||||
]
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue