-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
67 lines (66 loc) · 1.88 KB
/
astro.config.mjs
File metadata and controls
67 lines (66 loc) · 1.88 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site:"https://upb-code-labs.github.io",
base: "/manual",
integrations: [
starlight({
title: 'Code Labs manual',
defaultLocale: 'es',
locales: {
root: {
label: 'Español',
lang: 'es',
}
},
social: {
github: 'https://github.com/upb-code-labs',
},
sidebar: [
{
label: 'Introduction',
items: [
{ label: 'Introduction', link: '/guides/introduction/' },
]
},
{
label: 'Usuarios (General)',
items: [
{label: 'Gestión de perfil de usuario', link: '/guides/users/profile-management'},
]
},
{
label: 'Administradores',
items: [
{ label: 'Gestión de cuentas con rol de administrador', link: '/guides/admins/admin-accounts-management' },
{ label: 'Gestión de cuentas con rol de profesor', link: '/guides/admins/teacher-accounts-management' },
]
},
{
label: 'Profesores',
items: [
{ label: 'Gestión de cursos', link: '/guides/teachers/courses-management' },
{ label: 'Gestión de rúbricas', link: '/guides/teachers/rubrics-management' },
{ label: 'Gestión de laboratorios', link: '/guides/teachers/laboratories-management' },
{ label: 'Gestión de notas', link: '/guides/teachers/grades-management' },
]
},
{
label: 'Estudiantes',
items: [
{ label: 'Gestión de cursos', link: '/guides/students/courses-management' },
{ label: 'Gestión de laboratorios', link: '/guides/students/laboratories-management' },
{ label: 'Gestión de notas', link: '/guides/students/grades-management' },
]
},
{
label: "Desarrolladores y/o mantenedores",
items: [
//{ label: 'Introduction', link: '/guides/introduction/' },
]
},
],
}),
],
});