-
Notifications
You must be signed in to change notification settings - Fork 962
Expand file tree
/
Copy pathvocs.config.ts
More file actions
103 lines (101 loc) · 2.29 KB
/
vocs.config.ts
File metadata and controls
103 lines (101 loc) · 2.29 KB
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
import { defineConfig, Feedback, McpSource, Changelog } from "vocs/config";
import { sidebar } from "./sidebar/sidebar";
export const sponsors = {
collaborators: [
{
name: "Paradigm",
link: "https://paradigm.xyz",
image:
"https://raw.githubusercontent.com/wevm/.github/main/content/sponsors/paradigm-light.svg",
},
{
name: "Tempo",
link: "https://tempo.xyz",
image:
"https://raw.githubusercontent.com/wevm/.github/main/content/sponsors/tempo-light.svg",
},
],
};
export default defineConfig({
codeHighlight: {
langs: [],
langAlias: {
gitignore: "text",
},
},
// light: '#f98a1a', -- darker orange than the one below
accentColor: "light-dark(#f6b128, #f9c22f)",
title: "foundry - Ethereum Development Framework",
rootDir: ".",
sidebar,
changelog: Changelog.github({ repo: "foundry-rs/foundry" }),
feedback: Feedback.slack(),
mcp: {
enabled: true,
sources: [McpSource.github({ repo: "foundry-rs/foundry" })],
},
editLink: {
link: "https://github.com/foundry-rs/book/edit/master/src/pages/:path",
text: "Suggest changes on GitHub",
},
logoUrl: "/foundry-logo.png",
iconUrl: "/foundry-logo.png",
ogImageUrl: "/og-image.png",
socials: [
{
link: "https://github.com/foundry-rs/foundry",
icon: "github",
},
{
link: "https://t.me/foundry_support",
icon: "telegram",
},
],
topNav: [
{
link: "/introduction/getting-started",
text: "Docs",
},
{
link: "/guides",
text: "Guides",
},
{
text: "Reference",
items: [
{
text: "forge",
link: "/reference/forge/forge",
},
{
text: "cast",
link: "/reference/cast/cast",
},
{
text: "anvil",
link: "/reference/anvil/anvil",
},
{
text: "chisel",
link: "/reference/chisel/chisel",
},
{
text: "Cheatcodes",
link: "/reference/cheatcodes/overview",
},
{
text: "Forge Std",
link: "/reference/forge-std/overview",
},
],
},
{
link: "/benchmarks",
text: "Benchmarks",
},
{
text: "Changelog",
link: "/changelog",
},
],
});