-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
122 lines (120 loc) · 3.8 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightImageZoom from 'starlight-image-zoom'
// https://astro.build/config
export default defineConfig({
site: 'https://docs.buddyworks.wtf',
integrations: [
starlight({
plugins: [starlightImageZoom({
showCaptions: true
})],
title: 'BUDDYWORKS Docs',
favicon: '/favicon.ico',
description: 'All the details you could ever need.',
head: [
{
tag: 'meta',
attrs: {
name: 'og:image',
content: 'https://docs.buddyworks.wtf/og-image.png',
}
},
{
tag: 'meta',
attrs: {
name: 'twitter:image',
content: 'https://docs.buddyworks.wtf/og-image.png',
}
}
],
customCss: [
// Relative path to your custom CSS file
'./src/styles/custom.css',
],
social: {
github: 'https://github.com/BUDDYWORKS-VR',
twitter: 'https://twitter.com/JustBuddy_DE',
discord: 'https://buddyworks.wtf',
},
sidebar: [
{
label: 'Welcome!',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Overview', link: '/welcome/intro/' },
],
},
{
label: 'Avatar Framework',
collapsed: true,
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Getting started', link: '/framework/intro/' },
{ label: 'Installation', link: '/framework/setup/' },
{ label: 'Menu Structure', link: '/framework/structure-menu/' },
{ label: 'FX Structure', link: '/framework/structure-fx/' },
],
},
{
label: 'Avatar Scene',
collapsed: true,
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Getting started', link: '/scene/intro/' },
{ label: 'Installation', link: '/scene/setup/' },
{ label: 'Scene Overview', link: '/scene/overview/' },
],
},
{
label: 'Poses Extension',
collapsed: true,
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Getting started', link: '/posesextension/intro/' },
{ label: 'Installation', link: '/posesextension/setup/' },
{ label: 'Structure', link: '/posesextension/structure/' },
{ label: 'Components', link: '/posesextension/components'},
{ label: 'Action Controller', link: '/posesextension/action/' },
{ label: 'Interface', link: '/posesextension/interface/' },
{ label: 'Modding', link: '/posesextension/modding/' },
],
},
{
label: 'Expressions Extension',
collapsed: true,
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Getting started', link: '/expressionsextension/intro/' },
{ label: 'Installation', link: '/expressionsextension/setup/' },
{ label: 'Structure', link: '/expressionsextension/structure/' },
{ label: 'FX Controller', link: '/expressionsextension/fx/' },
{ label: 'Interface', link: '/expressionsextension/interface/'},
{ label: 'Custom Blendshapes', link: '/expressionsextension/customize/'}
],
},
{
label: 'Toolbox',
collapsed: true,
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Getting started', link: '/toolbox/intro/' },
{ label: 'Installation', link: '/toolbox/setup/' },
{ label: 'Components', link: '/toolbox/overview' },
],
},
{
label: 'Avatar Dynamics',
collapsed: true,
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Getting started', link: '/avatardynamics/intro/' },
{ label: 'Installation', link: '/avatardynamics/setup/' },
{ label: 'Structure', link: '/avatardynamics/structure' },
{ label: 'Adding Sounds', link: '/avatardynamics/modding' }
],
},
],
}),
],
});