mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-24 13:11:24 +03:00
25 lines
474 B
JavaScript
25 lines
474 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import starlight from '@astrojs/starlight';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
starlight({
|
|
title: 'Kekkai',
|
|
social: {
|
|
github: 'https://github.com/redume/kekkai',
|
|
},
|
|
sidebar: [
|
|
{
|
|
label: 'Getting started',
|
|
items: [
|
|
{
|
|
label: 'Docker', slug: 'getting-started/docker', badge: 'recommended'
|
|
}
|
|
],
|
|
},
|
|
],
|
|
}),
|
|
],
|
|
});
|