mvk/astro.config.mjs

46 lines
1.3 KiB
JavaScript
Raw Normal View History

2025-07-12 16:00:08 +01:00
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
2025-07-13 13:14:36 +01:00
title: 'MinimalViableK8s',
social: [{ icon: 'github', label: 'GitHub', href: 'https://codeberg.org/headshed/infctl-cli' }],
2025-07-12 16:00:08 +01:00
sidebar: [
2025-07-13 13:14:36 +01:00
{
label: 'MVK',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Minimal Viable Kubernetes', slug: 'guides/mvk' },
],
},
2025-07-12 16:00:08 +01:00
{
2025-07-13 13:14:36 +01:00
label: 'infctl',
2025-07-12 16:00:08 +01:00
items: [
// Each item here is one entry in the navigation menu.
2025-07-13 13:14:36 +01:00
{ label: 'Introduction', slug: 'guides/intro' },
{ label: 'Quick Start Guide', slug: 'guides/quick-start' },
{ label: 'Configuration', slug: 'guides/configuration' },
2025-07-12 16:00:08 +01:00
],
},
2025-07-16 19:18:00 +01:00
{
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' },
2025-07-17 11:05:09 +01:00
{ label: 'Initial Pipeline Run', slug: 'guides/infctl-first-run' },
{ label: 'Create a vagrant 3 node cluster', slug: 'guides/local-vagrant-cluster' },
2025-07-16 19:18:00 +01:00
],
},
2025-07-12 16:00:08 +01:00
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
],
}),
],
});