@@ -10,9 +10,46 @@ export default defineConfig({
1010 themeConfig : {
1111 nav : [
1212 { text : '首页' , link : '/' } ,
13+ { text : '项目' , link : '/projects/' , activeMatch : '^/projects/' } ,
1314 { text : '安全 QA' , link : '/security/' , activeMatch : '^/security/' } ,
1415 ] ,
1516 sidebar : {
17+ '/projects/' : [
18+ {
19+ text : '项目总览' ,
20+ items : [ { text : '全部公开项目' , link : '/projects/' } ] ,
21+ } ,
22+ {
23+ text : '游戏服务端与客户端' ,
24+ items : [
25+ { text : 'fyserver' , link : '/projects/fyserver' } ,
26+ { text : 'kards-server-go' , link : '/projects/kards-server-go' } ,
27+ { text : 'FyClient' , link : '/projects/fyclient' } ,
28+ ] ,
29+ } ,
30+ {
31+ text : 'UE 资产与蓝图工具链' ,
32+ items : [
33+ { text : 'Prism' , link : '/projects/prism' } ,
34+ { text : 'UAssetRegistry' , link : '/projects/uassetregistry' } ,
35+ { text : 'AssetRegistryTool' , link : '/projects/assetregistrytool' } ,
36+ { text : 'ULocres' , link : '/projects/ulocres' } ,
37+ { text : 'KismetDecompiler' , link : '/projects/kismetdecompiler' } ,
38+ { text : 'KismetReactor' , link : '/projects/kismetreactor' } ,
39+ ] ,
40+ } ,
41+ {
42+ text : '逆向工程与协议分析' ,
43+ items : [ { text : 'B64XorDecryption' , link : '/projects/b64xordecryption' } ] ,
44+ } ,
45+ {
46+ text : '其它' ,
47+ items : [
48+ { text : '上游衍生项目(Fork)' , link : '/projects/upstream' } ,
49+ { text : '本站(CCB-Team.github.io)' , link : '/projects/site' } ,
50+ ] ,
51+ } ,
52+ ] ,
1653 '/security/' : [
1754 {
1855 text : '安全 QA' ,
@@ -24,6 +61,10 @@ export default defineConfig({
2461 { text : '镜像与回放工具' , link : '/security/tooling' } ,
2562 ] ,
2663 } ,
64+ {
65+ text : '相关' ,
66+ items : [ { text : '项目总览' , link : '/projects/' } ] ,
67+ } ,
2768 ] ,
2869 } ,
2970 outline : { level : [ 2 , 3 ] , label : '本页目录' } ,
0 commit comments