chore(release): prepare v0.1.0 release for main #16

Merged
Ninosaurier merged 90 commits from dev into main 2026-08-05 15:57:47 +00:00
Showing only changes of commit 869ea55378 - Show all commits
+32 -19
View File
@@ -2,25 +2,38 @@
import { defineConfig } from 'astro/config'; import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight'; import starlight from '@astrojs/starlight';
// https://astro.build/config // https://astro.build/config
export default defineConfig({ export default defineConfig({
integrations: [ integrations: [
starlight({ starlight({
title: 'My Docs', title: 'LUNA-Charts',
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/withastro/starlight' }], social: [
sidebar: [ {
{ icon: 'github',
label: 'Guides', label: 'GitHub',
items: [ href: 'https://git.byting-pandas.ninja/Ninosaurier/LUNA-Charts',
// Each item here is one entry in the navigation menu. },
{ label: 'Example Guide', slug: 'guides/example' }, ],
], sidebar: [
}, {
{ label: 'Start Here',
label: 'Reference', items: [{ label: 'Getting Started', slug: 'getting-started' }],
items: [{ autogenerate: { directory: 'reference' } }], },
}, {
], label: 'Architecture',
}), items: [
], {
label: 'ADM',
items: [{ autogenerate: { "directory": "architecture/adm" } }],
},
{
label: 'ADRs',
items: [{ autogenerate: { "directory": "architecture/adr" } }],
},
],
},
],
}),
],
}); });