// @ts-check import { defineConfig } from "astro/config"; import starlight from "@astrojs/starlight"; // https://astro.build/config export default defineConfig({ integrations: [ starlight({ title: "Pragmatic Guides", favicon: "favicon.ico", social: { mastodon: "https://social.ayco.io/@ayo", blueSky: "https://bsky.app/profile/did:plc:hhpuzxrbpurathqyj2fuvnrs", github: "https://github.com/ayoayco", email: "mailto:ayo@ayco.io", }, sidebar: [ { label: "Guides", items: [ // Each item here is one entry in the navigation menu. { label: "Get Started", slug: "guides/getting-started" }, ], }, { label: "Reference", autogenerate: { directory: "reference" }, }, ], }), ], });