Files
docs.grlx.dev/astro.config.mjs
2023-10-25 11:21:05 -05:00

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' },
},
],
}),
],
});