Kekkai/docs/astro.config.mjs

17 lines
311 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: [],
2025-02-22 23:07:20 +03:00
}),
],
});