-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
41 lines (40 loc) · 1.11 KB
/
astro.config.mjs
File metadata and controls
41 lines (40 loc) · 1.11 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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'https://simvia-tech.github.io',
base: '/code-aster-dockerhub',
integrations: [
starlight({
title: 'code_aster docker catalog',
social: [
{icon: "seti:docker", label:"dockerhub", href:"https://hub.docker.com/r/simvia/code_aster" },
{icon: 'linkedin', label: 'LinkedIn', href: 'https://www.linkedin.com/company/simvia-tech/'}],
customCss: [
'./public/css/global.css',
],
sidebar: [
{
label: 'Catalog',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'code_aster 16', slug: 'catalog/code_aster_16' },
{ label: 'code_aster 17', slug: 'catalog/code_aster_17' },
],
},
{
label: 'Tips and Tricks',
items: [
{label: "Installation", slug: 'usage/installation'},
{label: "Usage", slug: 'usage/usage'},
]
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
],
}),
],
});