-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathconfig.js
41 lines (41 loc) · 1.2 KB
/
config.js
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
// .vuepress/config.js
module.exports = {
title: 'gbdev',
description: 'game boy development scene',
head: [
['link', { rel: "icon", type: "image/png", sizes: "32x32", href: "/favicons/favicon-32x32.png"}],
['link', { rel: "icon", type: "image/png", sizes: "16x16", href: "/favicons/favicon-16x16.png"}],
],
//base: "/list",
themeConfig: {
sidebar: [
{
title: 'Community',
path: '/',
collapsable: false,
sidebarDepth: 1,
children: [
['/chat', 'Chat'],
['/contribute', 'Contribute'],
]
},
['/list', 'Resources'],
{
title: 'Guides',
//path: '/foo/',
collapsable: false,
sidebarDepth: 1,
children: [
['/guides/tools', 'Choosing development tools'],
['/guides/asmstyle', 'ASM Style recomendations'],
['https://eldred.fr/gb-asm-tutorial', 'GB ASM Programming Guide']
]
},],
sidebarDepth: 2,
nav: [
{ text: 'GitHub', link: 'https://github.com/gbdev' },
{ text: 'Patreon', link: 'https://www.patreon.com/gbdev01' },
{ text: 'OpenCollective', link: 'https://opencollective.com/gbdev/'}
]
}
}