This commit is contained in:
Sijie.Sun
2025-03-15 11:19:56 +08:00
committed by GitHub
parent f4077460ab
commit 7cb7da4fe5
4 changed files with 146 additions and 136 deletions
+1
View File
@@ -2,6 +2,7 @@ import fs from 'node:fs'
import { defineConfig } from 'vitepress'
export const cn = defineConfig({
title: 'EasyTier - 简单、安全、去中心化的异地组网方案',
lang: 'cn',
description: '一个简单、安全、去中心化的内网穿透 SD-WAN 异地组网方案,使用 Rust 语言和 Tokio 框架实现',
+1
View File
@@ -2,6 +2,7 @@ import fs from 'node:fs'
import { defineConfig } from 'vitepress'
export const en = defineConfig({
title: 'EasyTier - A Simple, Secure, Decentralized SD-WAN Solution',
lang: 'en',
description: 'A simple, secure, decentralized SD-WAN solution for intranet penetration, implemented using Rust and the Tokio framework',
+8 -2
View File
@@ -7,15 +7,21 @@ import { cn, cnSearch } from './cn'
import { en } from './en'
export default withMermaid({
title: 'EasyTier',
base: '/',
lastUpdated: true,
head: [
['link', { rel: 'icon', type: 'image/png', sizes: '32x32', href: '/easytier.png' }],
// bing webmaster: <meta name="msvalidate.01" content="C6CB41F1DA6096106497701D002B19AD" />
['meta', { name: 'msvalidate.01', content: 'C6CB41F1DA6096106497701D002B19AD' }],
['meta', { name: 'author', content: 'EasyTier' }],
['meta', { name: 'keywords', content: 'easytier,SD-WAN,networking' }],
['meta', { property: 'og:type', content: 'website' }],
['meta', { property: 'og:title', content: 'EasyTier' }],
['meta', { property: 'og:description', content: 'EasyTier official' }],
['meta', { property: 'og:image', content: 'https://easytier.cn/easytier.png' }],
['link', { rel: 'canonical', href: 'https://easytier.cn' }],
],
themeConfig: {
siteTitle: 'EasyTier',
logo: '/easytier.png',
search: {
provider: 'local',
+136 -134
View File
File diff suppressed because one or more lines are too long