mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-05-13 21:14:17 +00:00
initial commit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
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: 'Reference',
|
||||
autogenerate: { directory: 'reference' },
|
||||
},
|
||||
],
|
||||
}),
|
||||
],
|
||||
});
|
||||
Reference in New Issue
Block a user