-
Notifications
You must be signed in to change notification settings - Fork 4
/
astro.config.mjs
129 lines (128 loc) · 4.46 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
123
124
125
126
127
128
129
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
site: "https://eips.wiki",
integrations: [
starlight({
title: '2077\'s EIP Wiki',
logo: {
light: './src/assets/full-logo-light.svg',
dark: './src/assets/full-logo-dark.svg',
replacesTitle: true,
},
social: {
github: 'https://github.com/2077-Collective',
discord: 'https://discord.gg/2077Collective',
},
head: [
{
tag: 'script',
attrs: {
src: 'https://plausible.io/js/script.outbound-links.js',
defer: true,
'data-domain': 'eips.wiki',
},
},
],
customCss: [
'@fontsource-variable/orbitron',
'./src/styles/global.css'
],
sidebar: [
{
label: 'Contributing',
items: [
{
label: 'Contribute to the EIPwiki',
link: '/eips/layer2/rip',
}
]
},
{
label: 'Protocol',
items: [
{
label: 'Consensus layer (CL)',
link: '/eips/protocol/consensus',
},
{
label: 'Execution layer (EL)',
link: '/eips/protocol/execution',
},
{
label: 'Networking layer (NL)',
link: '/eips/protocol/networking',
},
],
},
{
label: 'Applications',
items: [
{
label: 'Account abstraction',
link: '/eips/applications/aa',
},
{
label: 'Authentication & User security',
link: '/eips/applications/auth',
},
{
label: 'DAOs & Governance',
link: '/eips/applications/daos',
},
{
label: 'Defi',
link: '/eips/applications/defi',
},
{
label: 'Security',
link: '/eips/applications/security',
},
{
label: 'Token standards',
link: '/eips/applications/tokens',
},
{
label: 'General utilities for developers',
link: '/eips/applications/utils',
}
]
},
{
label: 'Infrastructure',
items: [
{
label: 'Briges & Interoperability',
link: '/eips/infra/bridges',
},
{
label: 'JSON-RPC API spec',
link: '/eips/infra/json-rpc',
},
{
label: 'Client APIs',
link: '/eips/infra/client-apis',
},
{
label: 'Wallets',
link: '/eips/infra/wallets',
},
{
label: 'Node operator',
link: '/eips/infra/node-operator',
}
]
},
{
label: 'Layer 2',
items: [
{
label: 'Rollup improvement proposals',
link: '/eips/layer2/rip',
}
]
},
],
}),
],
});