mirror of
https://github.com/gogrlx/docs.grlx.dev.git
synced 2026-04-02 03:08:53 -07:00
initial astro env
This commit is contained in:
23
astro.config.mjs
Normal file
23
astro.config.mjs
Normal 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' },
|
||||
},
|
||||
],
|
||||
}),
|
||||
],
|
||||
});
|
||||
Reference in New Issue
Block a user