-
Notifications
You must be signed in to change notification settings - Fork 0
/
vocs.config.ts
67 lines (66 loc) · 1.44 KB
/
vocs.config.ts
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
import { defineConfig } from 'vocs'
export default defineConfig({
description:
'Build reliable apps & libraries with lightweight, \
composable, and type-safe modules that interface with Ethereum.',
title: 'dappBooster',
sidebar: [
{
text: 'Introduction',
link: '/',
items: [
{
text: 'Why dAppBooster',
link: '/introduction/why-dappBooster',
},
{
text: 'Getting started',
link: '/introduction/getting-started',
},
{
text: 'Stack',
link: '/introduction/stack',
},
],
},
{
text: 'Components',
collapsed: true,
items: [{ text: 'Introduction', link: '/components/introduction' }],
},
{
text: 'Plugins',
collapsed: true,
link: '/plugins',
items: [{ text: 'Subgraphs', link: '/plugins/subgraphs' }],
},
{
text: 'Recipes',
collapsed: true,
items: [
{
text: 'My First dapp',
link: '/recipes/my-first-dapp',
},
{
text: 'Subgraphs',
link: '/recipes/subgraphs',
},
],
},
{
text: 'Styling',
collapsed: true,
items: [
{
text: 'Basic Styling',
link: '/styling/basic-styling',
},
{
text: 'Integration with other libraries',
link: '/styling/integration',
},
],
},
],
})