guides/astro.config.mjs
Ayo Ayco 0023bdc074 feat: update socials
- fix link to mastodon profile
- add github
2025-01-27 23:08:44 +01:00

32 lines
858 B
JavaScript

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