// @ts-check import { defineConfig } from 'astro/config'; import starlight from '@astrojs/starlight'; // https://astro.build/config export default defineConfig({ integrations: [ starlight({ title: 'MinimalViableK8s', social: [{ icon: 'github', label: 'GitHub', href: 'https://codeberg.org/headshed/infctl-cli' }], sidebar: [ { label: 'MVK', items: [ // Each item here is one entry in the navigation menu. { label: 'Minimal Viable Kubernetes', slug: 'guides/mvk' }, ], }, { label: 'infctl', items: [ // Each item here is one entry in the navigation menu. { label: 'Introduction', slug: 'guides/intro' }, { label: 'Quick Start Guide', slug: 'guides/quick-start' }, { label: 'Configuration', slug: 'guides/configuration' }, ], }, { label: 'Microlearning', items: [ // Each item here is one entry in the navigation menu. { label: 'Local Dev Environment', slug: 'guides/dev-env' }, { label: 'Create a Local K3d Instance', slug: 'guides/local-k3d' }, ], }, { label: 'Reference', autogenerate: { directory: 'reference' }, }, ], }), ], });