mirror of
https://github.com/EasyTier/easytier.github.io.git
synced 2025-05-19 10:27:06 +00:00
106 lines
3.8 KiB
TypeScript
106 lines
3.8 KiB
TypeScript
import { defineConfig } from 'vitepress'
|
|
|
|
export const cn = defineConfig({
|
|
lang: 'cn',
|
|
description: '一个简单、安全、去中心化的内网穿透 SD-WAN 异地组网方案,使用 Rust 语言和 Tokio 框架实现',
|
|
|
|
themeConfig: {
|
|
sidebar: [
|
|
{
|
|
text: '开始',
|
|
items: [
|
|
{ text: '简介', link: '/guide/introduction' },
|
|
{ text: '安装', link: '/guide/installation' },
|
|
],
|
|
},
|
|
{
|
|
text: '命令行工具组网',
|
|
link: '/guide/networking',
|
|
items: [
|
|
{ text: '双节点', link: '/guide/network/two-node-networking' },
|
|
{ text: '多节点', link: '/guide/network/multi-node-networking' },
|
|
{ text: '子网代理(点对网)', link: '/guide/network/point-to-networking' },
|
|
{ text: '网对网', link: '/guide/network/network-to-network' },
|
|
{ text: '无公网 IP', link: '/guide/network/networking-without-public-ip' },
|
|
{ text: '使用 WireGuard 客户端接入', link: '/guide/network/use-easytier-with-wireguard-client' },
|
|
{ text: 'SOCKS5', link: '/guide/network/socks5' },
|
|
{ text: '无 TUN 模式(免 Root 权限)', link: '/guide/network/no-root' },
|
|
{ text: '自建公共服务器', link: '/guide/network/host-public-server' },
|
|
{ text: '安装为 Windows 服务(开机自启)', link: '/guide/network/install-as-a-windows-service' },
|
|
{ text: '安装为 Linux systemd 服务', link: '/guide/network/install-as-a-systemd-service' },
|
|
{ text: '安装为 macOS 服务', link: '/guide/network/install-as-a-macos-service' },
|
|
{ text: '其他配置', link: '/guide/network/configurations' },
|
|
{ text: '配置文件', link: '/guide/network/config-file' },
|
|
],
|
|
},
|
|
{
|
|
text: '图形界面 GUI 组网',
|
|
link: 'guide/gui/index',
|
|
items: [
|
|
{ text: '公共服务器组网', link: '/guide/gui/basic' },
|
|
{ text: '手动组网', link: '/guide/gui/manual' },
|
|
{ text: 'WireGuard 接入', link: '/guide/gui/vpn_portal' },
|
|
{ text: '子网代理', link: '/guide/gui/subnet_proxy' },
|
|
{ text: 'EasyTier 管理器', link: '/guide/gui/easytier-manager' },
|
|
{ text: 'EasyTier 游戏联机启动器', link: '/guide/gui/easytier-game' },
|
|
],
|
|
},
|
|
{
|
|
items: [
|
|
{ text: '性能测试', link: '/guide/perf' },
|
|
{ text: '路线图', link: '/guide/roadmap' },
|
|
{ text: '社区和贡献', link: '/guide/community-and-contribution' },
|
|
{ text: '许可证', link: '/guide/license' },
|
|
{ text: '联系方式', link: '/guide/contact' },
|
|
],
|
|
},
|
|
],
|
|
footer: {
|
|
message: '基于 Apache License 2.0 许可发布',
|
|
copyright: '版权所有 © 2024-present EasyTier',
|
|
},
|
|
editLink: {
|
|
pattern: 'https://github.com/EasyTier/easytier.github.io/edit/main/:path',
|
|
text: '在 GitHub 上编辑此页面',
|
|
},
|
|
docFooter: {
|
|
prev: '上一页',
|
|
next: '下一页',
|
|
},
|
|
outline: {
|
|
label: '页面导航',
|
|
},
|
|
lastUpdated: {
|
|
text: '最后更新于',
|
|
formatOptions: {
|
|
dateStyle: 'short',
|
|
timeStyle: 'medium',
|
|
},
|
|
},
|
|
langMenuLabel: '多语言',
|
|
returnToTopLabel: '回到顶部',
|
|
sidebarMenuLabel: '菜单',
|
|
darkModeSwitchLabel: '主题',
|
|
lightModeSwitchTitle: '切换到浅色模式',
|
|
darkModeSwitchTitle: '切换到深色模式',
|
|
},
|
|
})
|
|
|
|
export const cnSearch = {
|
|
translations: {
|
|
button: {
|
|
buttonText: '搜索文档',
|
|
buttonAriaLabel: '搜索文档',
|
|
},
|
|
modal: {
|
|
noResultsText: '无法找到相关结果',
|
|
resetButtonTitle: '清除查询条件',
|
|
footer: {
|
|
selectText: '选择',
|
|
navigateText: '切换',
|
|
closeText: '关闭',
|
|
},
|
|
},
|
|
},
|
|
}
|