Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol. wisp.place
at main 867 B view raw
1// @ts-check 2import { defineConfig } from 'astro/config'; 3import starlight from '@astrojs/starlight'; 4 5// https://astro.build/config 6export default defineConfig({ 7 integrations: [ 8 starlight({ 9 title: 'Wisp.place Docs', 10 social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/tangled-org/wisp.place' }], 11 sidebar: [ 12 { 13 label: 'Getting Started', 14 items: [ 15 { label: 'Overview', slug: 'index' }, 16 { label: 'CLI Tool', slug: 'cli' }, 17 ], 18 }, 19 { 20 label: 'Lexicons', 21 autogenerate: { directory: 'lexicons' }, 22 }, 23 { 24 label: 'Guides', 25 items: [ 26 { label: 'Self-Hosting', slug: 'deployment' }, 27 { label: 'Monitoring & Metrics', slug: 'monitoring' }, 28 { label: 'Redirects & Rewrites', slug: 'redirects' }, 29 ], 30 }, 31 ], 32 customCss: ['./src/styles/custom.css'], 33 }), 34 ], 35});