Skip to content

Commit 7055231

Browse files
committed
chore: fix shiki config
1 parent 70a83b0 commit 7055231

File tree

2 files changed

+56
-52
lines changed

2 files changed

+56
-52
lines changed

src/pages/benchmarks.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{/* Auto-generated from 2/6/2026. Do not edit manually. */}
1+
{/* Auto-generated from 2/9/2026. Do not edit manually. */}
22

33
# Benchmarks
44

vocs.config.ts

Lines changed: 55 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,99 +1,103 @@
1-
import { defineConfig, Feedback, McpSource, Changelog } from 'vocs/config'
2-
import { sidebar } from './sidebar/sidebar'
1+
import { defineConfig, Feedback, McpSource, Changelog } from "vocs/config";
2+
import { sidebar } from "./sidebar/sidebar";
33

44
export const sponsors = {
55
collaborators: [
66
{
7-
name: 'Paradigm',
8-
link: 'https://paradigm.xyz',
7+
name: "Paradigm",
8+
link: "https://paradigm.xyz",
99
image:
10-
'https://raw.githubusercontent.com/wevm/.github/main/content/sponsors/paradigm-light.svg',
10+
"https://raw.githubusercontent.com/wevm/.github/main/content/sponsors/paradigm-light.svg",
1111
},
1212
{
13-
name: 'Tempo',
14-
link: 'https://tempo.xyz',
13+
name: "Tempo",
14+
link: "https://tempo.xyz",
1515
image:
16-
'https://raw.githubusercontent.com/wevm/.github/main/content/sponsors/tempo-light.svg',
16+
"https://raw.githubusercontent.com/wevm/.github/main/content/sponsors/tempo-light.svg",
1717
},
1818
],
19-
}
19+
};
2020

2121
export default defineConfig({
22+
codeHighlight: {
23+
langs: [],
24+
langAlias: {
25+
gitignore: "text",
26+
},
27+
},
2228
// light: '#f98a1a', -- darker orange than the one below
23-
accentColor: 'light-dark(#f6b128, #f9c22f)',
24-
title: 'foundry - Ethereum Development Framework',
25-
rootDir: '.',
29+
accentColor: "light-dark(#f6b128, #f9c22f)",
30+
title: "foundry - Ethereum Development Framework",
31+
rootDir: ".",
2632
sidebar,
27-
changelog: Changelog.github({ repo: 'foundry-rs/foundry' }),
33+
changelog: Changelog.github({ repo: "foundry-rs/foundry" }),
2834
feedback: Feedback.slack(),
2935
mcp: {
3036
enabled: true,
31-
sources: [
32-
McpSource.github({ repo: 'foundry-rs/foundry' }),
33-
],
37+
sources: [McpSource.github({ repo: "foundry-rs/foundry" })],
3438
},
3539
editLink: {
36-
link: 'https://github.com/foundry-rs/book/edit/master/vocs/src/pages/:path',
37-
text: 'Suggest changes on GitHub',
40+
link: "https://github.com/foundry-rs/book/edit/master/vocs/src/pages/:path",
41+
text: "Suggest changes on GitHub",
3842
},
39-
logoUrl: '/foundry-logo.png',
40-
iconUrl: '/foundry-logo.png',
41-
ogImageUrl: '/og-image.png',
43+
logoUrl: "/foundry-logo.png",
44+
iconUrl: "/foundry-logo.png",
45+
ogImageUrl: "/og-image.png",
4246
socials: [
4347
{
44-
link: 'https://github.com/foundry-rs/foundry',
45-
icon: 'github'
48+
link: "https://github.com/foundry-rs/foundry",
49+
icon: "github",
4650
},
4751
{
48-
link: 'https://t.me/foundry_support',
49-
icon: 'telegram',
50-
}
52+
link: "https://t.me/foundry_support",
53+
icon: "telegram",
54+
},
5155
],
5256
topNav: [
5357
{
54-
link: '/introduction/getting-started',
55-
text: 'Docs',
58+
link: "/introduction/getting-started",
59+
text: "Docs",
5660
},
5761
{
58-
link: '/guides',
59-
text: 'Guides',
62+
link: "/guides",
63+
text: "Guides",
6064
},
6165
{
62-
text: 'Reference',
66+
text: "Reference",
6367
items: [
6468
{
65-
text: 'forge',
66-
link: '/reference/forge/forge',
69+
text: "forge",
70+
link: "/reference/forge/forge",
6771
},
6872
{
69-
text: 'cast',
70-
link: '/reference/cast/cast',
73+
text: "cast",
74+
link: "/reference/cast/cast",
7175
},
7276
{
73-
text: 'anvil',
74-
link: '/reference/anvil/anvil',
77+
text: "anvil",
78+
link: "/reference/anvil/anvil",
7579
},
7680
{
77-
text: 'chisel',
78-
link: '/reference/chisel/chisel',
81+
text: "chisel",
82+
link: "/reference/chisel/chisel",
7983
},
8084
{
81-
text: 'Cheatcodes',
82-
link: '/reference/cheatcodes/overview',
85+
text: "Cheatcodes",
86+
link: "/reference/cheatcodes/overview",
8387
},
8488
{
85-
text: 'Forge Std',
86-
link: '/reference/forge-std/overview',
89+
text: "Forge Std",
90+
link: "/reference/forge-std/overview",
8791
},
88-
]
92+
],
8993
},
9094
{
91-
link: '/benchmarks',
92-
text: 'Benchmarks',
95+
link: "/benchmarks",
96+
text: "Benchmarks",
9397
},
9498
{
95-
text: 'Changelog',
96-
link: '/changelog',
97-
}
98-
]
99-
})
99+
text: "Changelog",
100+
link: "/changelog",
101+
},
102+
],
103+
});

0 commit comments

Comments
 (0)