Files
easytier.github.io/.vitepress/config/cn.ts
T
2024-05-07 21:58:38 +08:00

40 lines
1.4 KiB
TypeScript

import { defineConfig } from 'vitepress'
export const cn = defineConfig({
lang: 'cn',
description: '一个简单、安全、去中心化的内网穿透 VPN 组网方案,使用 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: '无公网IP', link: '/guide/network/networking-without-public-ip' },
{ text: '使用 WireGuard 客户端接入', link: '/guide/network/use-easytier-with-wirefuard-client' },
{ text: '其他配置', link: '/guide/network/configurations' },
],
},
{
items: [
{ text: '路线图', link: '/guide/roadmap' },
{ text: '社区和贡献', link: '/guide/community-and-contribution' },
{ text: '许可证', link: '/guide/license' },
{ text: '联系方式', link: '/guide/contact' },
],
},
],
},
})