mirror of
https://github.com/gogrlx/docs.grlx.dev.git
synced 2026-04-02 11:18:58 -07:00
24 lines
630 B
JavaScript
24 lines
630 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import starlight from '@astrojs/starlight';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
starlight({
|
|
title: 'grlx.dev',
|
|
logo: { src: './src/assets/grlx.webp' },
|
|
social: {
|
|
github: 'https://gihthub.com/gogrlx/grlx',
|
|
'x.com': 'https://x.com/gogrlx',
|
|
},
|
|
sidebar: [
|
|
{label: 'Getting Started', link: '/getting-started'},
|
|
{
|
|
label: 'Ingredients',
|
|
autogenerate: { directory: 'ingredients' },
|
|
},
|
|
],
|
|
}),
|
|
],
|
|
});
|