1
1
// .vuepress/config.js
2
2
module . exports = {
3
- plugins : [
4
- [ '@vuepress/plugin-shiki' , { 'langs' : [ 'asm' ] } ] ,
5
- ] ,
6
- title : 'gbdev' ,
3
+ plugins : [
4
+ [ '@vuepress/plugin-shiki' , { 'langs' : [ 'asm' ] } ] ,
5
+ ] ,
6
+ title : 'gbdev' ,
7
7
description : 'game boy development scene' ,
8
8
head : [
9
- [ 'link' , { rel : "icon" , type : "image/png" , sizes : "32x32" , href : "/favicons/favicon-32x32.png" } ] ,
10
- [ 'link' , { rel : "icon" , type : "image/png" , sizes : "16x16" , href : "/favicons/favicon-16x16.png" } ] ,
9
+ [ 'link' , { rel : "icon" , type : "image/png" , sizes : "32x32" , href : "/favicons/favicon-32x32.png" } ] ,
10
+ [ 'link' , { rel : "icon" , type : "image/png" , sizes : "16x16" , href : "/favicons/favicon-16x16.png" } ] ,
11
11
] ,
12
- //base: "/list",
13
- themeConfig : {
14
- contributors : false ,
15
- sidebar : [
16
- {
17
- text : 'Community' ,
18
- link : '/' ,
19
- collapsable : false ,
20
- sidebarDepth : 1 ,
21
- children : [
22
- { link : '/chat' , text : 'Chat' } ,
23
- { link : '/contribute' , text : 'Contribute' } ,
24
- ]
25
- } ,
26
- { link : 'https://itch.io/jam/gbcompo21' , text :'gb compo 2021' } ,
27
- { link : '/list' , text : 'Resources' } ,
28
- {
29
- text : 'Guides' ,
30
- collapsable : false ,
31
- sidebarDepth : 1 ,
32
- children : [
33
- { link : '/guides/tools' , text :'Choosing development tools' } ,
34
- { link : '/guides/asmstyle' , text :'ASM Style recomendations' } ,
35
- { link : '/guides/lyc_timing' , text :'The Timing of LYC STAT Handlers' } ,
36
- { link : '/guides/dma_hijacking' , text :'DMA Hijacking' } ,
37
- { link : 'https://eldred.fr/gb-asm-tutorial' , text :'GB ASM Programming Guide' }
12
+ //base: "/list",
13
+ themeConfig : {
14
+ contributors : false ,
15
+ sidebar : [ {
16
+ text : 'Community' ,
17
+ link : '/' ,
18
+ collapsable : false ,
19
+ sidebarDepth : 1 ,
20
+ children : [
21
+ { link : '/chat' , text : 'Chat' } ,
22
+ { link : '/contribute' , text : 'Contribute' } ,
23
+ ]
24
+ } ,
25
+ { link : '/list' , text : 'Resources' } ,
26
+ {
27
+ text : 'Guides' ,
28
+ collapsable : false ,
29
+ sidebarDepth : 1 ,
30
+ children : [
31
+ { link : '/guides/tools' , text : 'Choosing development tools' } ,
32
+ { link : '/guides/asmstyle' , text : 'ASM Style recomendations' } ,
33
+ { link : '/guides/lyc_timing' , text : 'The Timing of LYC STAT Handlers' } ,
34
+ { link : '/guides/dma_hijacking' , text : 'DMA Hijacking' } ,
35
+ { link : 'https://eldred.fr/gb-asm-tutorial' , text : 'GB ASM Programming Guide' }
36
+ ]
37
+ } ,
38
+ {
39
+ link : '/gbcompo21' ,
40
+ text : 'GB Competition 2021' ,
41
+ children : [
42
+ { link : '/gbcompo21-results' , text : 'Results' } ,
43
+ ]
44
+ }
45
+ ] ,
46
+ navbar : [
47
+ { text : 'Patreon' , link : 'https://www.patreon.com/gbdev01' } ,
48
+ { text : 'OpenCollective' , link : 'https://opencollective.com/gbdev/' }
38
49
]
39
- }
40
- ] ,
41
- navbar : [
42
- { text : 'Patreon' , link : 'https://www.patreon.com/gbdev01' } ,
43
- { text : 'OpenCollective' , link : 'https://opencollective.com/gbdev/' }
44
- ]
45
- }
46
- }
50
+ }
51
+ }
0 commit comments