Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
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 components: {
11 SocialIcons: './src/components/SocialIcons.astro',
12 },
13 sidebar: [
14 {
15 label: 'Getting Started',
16 items: [
17 { label: 'Overview', slug: 'index' },
18 { label: 'CLI Tool', slug: 'cli' },
19 ],
20 },
21 {
22 label: 'Lexicons',
23 autogenerate: { directory: 'lexicons' },
24 },
25 {
26 label: 'Guides',
27 items: [
28 { label: 'Self-Hosting', slug: 'deployment' },
29 { label: 'Monitoring & Metrics', slug: 'monitoring' },
30 { label: 'Redirects & Rewrites', slug: 'redirects' },
31 ],
32 },
33 ],
34 customCss: ['./src/styles/custom.css'],
35 }),
36 ],
37});