initial astro env

This commit is contained in:
Ethan Holz
2023-10-25 11:21:05 -05:00
parent 771fce09f4
commit 49f052621e
7 changed files with 6975 additions and 18 deletions

23
astro.config.mjs Normal file
View File

@@ -0,0 +1,23 @@
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' },
},
],
}),
],
});