-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.ts
50 lines (48 loc) · 1.6 KB
/
sidebars.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
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs'
// const sidebars: SidebarsConfig = {
// solidity: [
// 'solidity/introduction',
// {
// label: 'Solidity',
// type: 'category',
// link: { type: 'generated-index' },
// items: [
// {
// type: 'autogenerated',
// dirName: 'solidity',
// },
// ],
// },
// ],
// tools: [
// 'tools/introduction',
// 'tools/everything-quick-search-local-files',
// 'tools/wappalyzer-recognize-technology',
// 'tools/windows-custom-right-click-menu',
// 'tools/vscode-config',
// 'tools/idea-config',
// 'tools/vite-plugin',
// 'tools/jetbrains-product-activation-method',
// ],
// }
const sidebars: SidebarsConfig = {
// key 对应顶部栏,顶部栏会在下面讲到
// Solidity: [
// {
// type: "autogenerated",
// dirName: 'application',
// }
// ],
Security: [{ type: "autogenerated", dirName: 'security', }],
Web3Tools: [{ type: "autogenerated", dirName: 'Web3tools', }],
CTF: [{ type: "autogenerated", dirName: 'ctf', }],
Recurrence: [{ type: "autogenerated", dirName: 'recurrence', }],
Application: [{ type: "autogenerated", dirName: 'application', }],
Basic: [{ type: "autogenerated", dirName: 'Basic', }],
EIP: [{ type: "autogenerated", dirName: 'EIP&ERC', }],
Proxy: [{ type: "autogenerated", dirName: 'Proxy', }],
EVM: [{ type: "autogenerated", dirName: 'EVM', }],
Huff: [{ type: "autogenerated", dirName: 'Huff', }],
Defi: [{ type: "autogenerated", dirName: 'Defi', }],
};
module.exports = sidebars