Files
moeka-project/docs/astro.config.ts
T
2025-02-08 23:22:30 +07:00

25 lines
527 B
TypeScript

import starlight from '@astrojs/starlight'
import { defineConfig } from 'astro/config'
import catppuccin from 'starlight-theme-catppuccin'
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Project Airi',
social: {
github: 'https://github.com/moeru-ai/airi',
},
sidebar: [
{
label: 'Guides',
autogenerate: { directory: 'guides' },
},
],
plugins: [
catppuccin(),
],
}),
],
})