jdysya 8b67f40103 feat(gateway): 实现文档登录认证功能
- 新增登录页面和登录逻辑
- 添加用户会话管理和权限校验中间件
- 实现页面访问日志记录
- 移除 VuePress 相关代码,改为使用 Gin 框架
2025-02-15 12:17:24 +08:00

27 lines
531 B
TypeScript

import { sidebar } from "vuepress-theme-hope";
export default sidebar({
"/": [
"",
{
text: "译文",
icon: "laptop-code",
prefix: "processed/",
link: "processed/",
children: "structure",
},
{
text: "原文",
icon: "book",
prefix: "origin/",
link: "origin/",
children: "structure",
},
{
text: "幻灯片",
icon: "person-chalkboard",
link: "https://ecosystem.vuejs.press/zh/plugins/markdown/revealjs/demo.html",
},
],
});