guides/astro.config.mjs
2025-01-26 22:28:40 +01:00

30 lines
771 B
JavaScript

// @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" },
},
],
}),
],
});