-
Notifications
You must be signed in to change notification settings - Fork 2
/
astro.config.mjs
36 lines (35 loc) · 980 Bytes
/
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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
favicon: '/favicon.png',
title: 'Netrunner Academy',
social: {
github: 'https://github.com/Netrunner-Academy',
signal: 'https://signal.me/#eu/uMi0jCmn-sROI_W4ONWRWkoh7LFN1TVh8P9d-HyR2njyYHpv_yVIN6at0dp-dtez'
},
sidebar: [
{
label: 'Getting Started',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Getting Started', link: '/getting-started/introduction/' },
],
},
{
label: 'OS Security',
collapsed: false,
items: [
{ label: 'ChromeOS', link: '/os-security/chromeos/'},
{ label: 'Linux', link: '/os-security/linux/'},
{ label: 'macOS', link: '/os-security/macos/'},
{ label: 'Windows', link: '/os-security/windows/'}
]
},
],
pagination: false,
}),
],
});