mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-24 05:01:26 +03:00
docs: new init files starlight
This commit is contained in:
parent
8e1b6e6883
commit
c812ea5025
12 changed files with 7124 additions and 0 deletions
28
docs/astro.config.mjs
Normal file
28
docs/astro.config.mjs
Normal file
|
@ -0,0 +1,28 @@
|
|||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
import starlight from '@astrojs/starlight';
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
integrations: [
|
||||
starlight({
|
||||
title: 'My Docs',
|
||||
social: {
|
||||
github: 'https://github.com/withastro/starlight',
|
||||
},
|
||||
sidebar: [
|
||||
{
|
||||
label: 'Guides',
|
||||
items: [
|
||||
// Each item here is one entry in the navigation menu.
|
||||
{ label: 'Example Guide', slug: 'guides/example' },
|
||||
],
|
||||
},
|
||||
{
|
||||
label: 'Reference',
|
||||
autogenerate: { directory: 'reference' },
|
||||
},
|
||||
],
|
||||
}),
|
||||
],
|
||||
});
|
Loading…
Add table
Reference in a new issue