Files
LUNA-Charts/docs/astro.config.mjs
Ninosaurier 3d79b545d4 fix(docs): Updated astro.config.mjs
AstroJS will show automatically all mdx-files in the folder "getting-started"
2026-07-15 00:47:10 +02:00

40 lines
925 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'LUNA-Charts',
social: [
{
icon: 'github',
label: 'GitHub',
href: 'https://git.byting-pandas.ninja/Ninosaurier/LUNA-Charts',
},
],
sidebar: [
{
label: 'Start Here',
items: [{ autogenerate: { "directory": "getting-started" } }],
},
{
label: 'Architecture',
items: [
{
label: 'ADM',
items: [{ autogenerate: { "directory": "architecture/adm" } }],
},
{
label: 'ADRs',
items: [{ autogenerate: { "directory": "architecture/adr" } }],
},
],
},
],
}),
],
});