The MDX files are automatically placed in the ADM and ADR subfolders in the documentation
40 lines
926 B
JavaScript
40 lines
926 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: [{ label: 'Getting Started', slug: 'getting-started' }],
|
|
},
|
|
{
|
|
label: 'Architecture',
|
|
items: [
|
|
{
|
|
label: 'ADM',
|
|
items: [{ autogenerate: { "directory": "architecture/adm" } }],
|
|
},
|
|
{
|
|
label: 'ADRs',
|
|
items: [{ autogenerate: { "directory": "architecture/adr" } }],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
}),
|
|
],
|
|
});
|