-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
39 lines (38 loc) · 1.22 KB
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'FlowBot Docs',
social: {
github: '/~https://github.com/CodeF1ow/flowbot-docs',
},
sidebar: [
{
label: 'Comandos',
items: [
// Cada elemento aquí es una entrada en el menú de navegación.
{ label: 'Automod', slug: 'comandos/automod' },
{ label: 'Diversion', slug: 'comandos/diversion'},
{ label: 'Economia', slug: 'comandos/economia'},
{ label: 'Niveles', slug: 'comandos/niveles'},
{ label: 'Imagenes', slug: 'comandos/imagen'},
{ label: 'Informacion', slug: 'comandos/informacion'},
{ label: 'Invitaciones', slug: 'comandos/invitaciones'},
{ label: 'Moderación', slug: 'comandos/moderacion'},
{ label: 'Musica', slug: 'comandos/musica'},
{ label: 'Gracias', slug: 'comandos/gracias'},
{ label: 'Tickets', slug: 'comandos/tickets'},
{ label: 'Sorteos', slug: 'comandos/sorteos'},
{ label: 'Utilidad', slug: 'comandos/utilidad'},
],
},
{
label: 'Adicional',
autogenerate: { directory: 'adicional' },
},
],
}),
],
});