-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
44 lines (43 loc) · 1.43 KB
/
astro.config.mjs
File metadata and controls
44 lines (43 loc) · 1.43 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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
site: 'https://opennow.zortos.me',
integrations: [
starlight({
title: 'OpenNOW',
description: 'Documentation for the OpenCloudGaming/OpenNOW Electron client',
social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/OpenCloudGaming/OpenNOW' },
{ icon: 'discord', label: 'Discord', href: 'https://discord.gg/8EJYaJcNfD' },
],
sidebar: [
{
label: 'Guides',
items: [
{ label: 'Development Guide', slug: 'development' },
{ label: 'Getting Started', slug: 'guides/getting-started' },
],
},
{
label: 'Architecture',
items: [{ label: 'Overview', slug: 'architecture/overview' }],
},
{
label: 'Advanced',
items: [{ label: 'Streamer Investigation', slug: 'advanced/streamer-investigation' }],
},
{
label: 'Reference',
items: [
{ label: 'Authentication', slug: 'reference/authentication' },
{ label: 'WebRTC', slug: 'reference/webrtc' },
{ label: 'Media', slug: 'reference/media' },
{ label: 'Input', slug: 'reference/input' },
{ label: 'Configuration', slug: 'reference/configuration' },
],
},
],
}),
],
});