Kekkai/docs/astro.config.mjs

26 lines
474 B
JavaScript
Raw Normal View History

2025-02-22 23:07:20 +03:00
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Kekkai',
2025-02-22 23:07:20 +03:00
social: {
github: 'https://github.com/redume/kekkai',
2025-02-22 23:07:20 +03:00
},
sidebar: [
{
label: 'Getting started',
items: [
{
label: 'Docker', slug: 'getting-started/docker', badge: 'recommended'
}
],
},
],
2025-02-22 23:07:20 +03:00
}),
],
});