Files
showbridge-docs/astro.config.mjs
T
Joel Wetzell 63e9108fb2 initial commit
2025-12-03 17:58:59 -06:00

34 lines
745 B
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: 'Reference',
autogenerate: { directory: 'reference' },
},
],
}),
],
});