-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvocs.config.ts
More file actions
38 lines (37 loc) · 990 Bytes
/
vocs.config.ts
File metadata and controls
38 lines (37 loc) · 990 Bytes
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
import { defineConfig } from 'vocs'
export default defineConfig({
title: 'hyper-evm-lib',
theme: {
accentColor: {
dark: '#42e7d7',
// light: '#f98a1a', -- darker orange than the one below
light: '#12a787',
},
},
sidebar: [
{
text: 'Introduction',
items: [
{ text: 'Overview', link: '/intro/overview' },
{ text: 'Getting Started', link: '/intro/getting-started' },
],
},
{
text: 'Development',
items: [
{ text: 'Overview', link: '/dev/overview' },
{ text: 'CoreWriterLib', link: '/dev/corewriter' },
{ text: 'PrecompileLib', link: '/dev/precompiles' },
{ text: 'TokenRegistry', link: '/dev/token-registry' },
],
},
{
text: 'Testing Framework',
items: [
{ text: 'Overview', link: '/testing/overview' },
{ text: 'Quick start', link: '/testing/quick-start' },
],
},
{ text: 'Examples', link: '/example' },
],
})