mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-05-13 21:14:17 +00:00
68 lines
1.6 KiB
JavaScript
68 lines
1.6 KiB
JavaScript
import starlight from '@astrojs/starlight';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
starlight({
|
|
title: 'showbridge',
|
|
favicon: '/favicon.ico',
|
|
social: [
|
|
{
|
|
icon: 'github',
|
|
label: 'GitHub',
|
|
href: 'https://github.com/jwetzell/showbridge-go',
|
|
},
|
|
],
|
|
sidebar: [
|
|
{
|
|
label: 'showbridge',
|
|
autogenerate: { directory: '/showbridge' },
|
|
},
|
|
{
|
|
label: 'Run',
|
|
autogenerate: { directory: 'run' },
|
|
},
|
|
{
|
|
label: 'Concepts',
|
|
autogenerate: { directory: 'concepts' },
|
|
},
|
|
{
|
|
label: 'Modules',
|
|
items: [
|
|
{
|
|
label: "Generator",
|
|
collapsed: true,
|
|
autogenerate: { directory: 'modules/generator' }
|
|
},
|
|
{
|
|
label: "Network",
|
|
collapsed: true,
|
|
autogenerate: { directory: 'modules/network' }
|
|
},
|
|
]
|
|
},
|
|
{
|
|
label: 'Processors',
|
|
items: [
|
|
{
|
|
label: "OSC",
|
|
collapsed: true,
|
|
autogenerate: { directory: 'processors/osc' }
|
|
},
|
|
{
|
|
label: "String",
|
|
collapsed: true,
|
|
autogenerate: { directory: 'processors/string' }
|
|
},
|
|
]
|
|
},
|
|
{
|
|
label: 'Examples',
|
|
autogenerate: { directory: 'examples' },
|
|
},
|
|
],
|
|
}),
|
|
],
|
|
});
|