Files
docs.grlx.dev/astro.config.mjs

25 lines
701 B
JavaScript

import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'grlx.dev',
components: { Head: './src/components/Transitions.astro'},
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' },
},
],
}),
],
});