30 lines
773 B
JavaScript
30 lines
773 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",
|
|
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: "Reference",
|
|
autogenerate: { directory: "reference" },
|
|
},
|
|
],
|
|
}),
|
|
],
|
|
});
|