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