mirror of
https://github.com/EasyTier/easytier.github.io.git
synced 2025-05-19 10:27:06 +00:00
50 lines
1.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
import { defineConfig } from 'vitepress'
|
|
|
|
export const en = defineConfig({
|
|
lang: 'en',
|
|
description: 'a simple, safe and decentralized VPN networking solution implemented with the Rust language and Tokio framework.',
|
|
|
|
themeConfig: {
|
|
search: {
|
|
provider: 'local',
|
|
},
|
|
sidebar: [
|
|
{
|
|
text: 'Getting Started',
|
|
items: [
|
|
{ text: 'Introduction', link: '/en/guide/introduction' },
|
|
{ text: 'installation', link: '/en/guide/installation' },
|
|
],
|
|
},
|
|
{
|
|
text: 'Networking',
|
|
link: '/en/guide/networking',
|
|
items: [
|
|
{ text: 'Two Node', link: '/en//guide/network/two-node-networking' },
|
|
{ text: 'Multi Node', link: '/en//guide/network/multi-node-networking' },
|
|
{ text: 'Subnet Proxy', link: '/en//guide/network/point-to-networking' },
|
|
{ text: 'Without Public IP', link: '/en//guide/network/networking-without-public-ip' },
|
|
{ text: 'Use WireGuard Client', link: '/en//guide/network/use-easytier-with-wirefuard-client' },
|
|
{ text: 'Other Configurations', link: '/en//guide/network/configurations' },
|
|
],
|
|
},
|
|
{
|
|
items: [
|
|
{ text: 'Roadmap', link: '/en/guide/roadmap' },
|
|
{ text: 'Community and Contribution', link: '/en/guide/community-and-contribution' },
|
|
{ text: 'License', link: '/en/guide/license' },
|
|
{ text: 'Contact', link: '/en/guide/contact' },
|
|
],
|
|
},
|
|
],
|
|
footer: {
|
|
message: 'Released under the Apache License 2.0.',
|
|
copyright: 'Copyright © 2024-present EasyTier',
|
|
},
|
|
editLink: {
|
|
pattern: 'https://github.com/m1m1sha/easytier-doc/edit/main/:path',
|
|
text: 'Edit this page on GitHub',
|
|
},
|
|
},
|
|
})
|