Files
frp-panel/docs/.vitepress/config/en.ts
2025-05-25 11:06:08 +00:00

41 lines
1.1 KiB
TypeScript

import type { DefaultTheme, LocaleSpecificConfig } from "vitepress";
export const enConfig: LocaleSpecificConfig<DefaultTheme.Config> = {
themeConfig: {
nav: [
{ text: "Home", link: "/en/" },
{ text: "Source Code", link: "https://github.com/vaalacat/frp-panel" },
],
sidebar: [
{
text: "Quick Start",
collapsed: true,
link: "/en/quick-start",
items: [
{ text: "Master Deployment", link: "/en/deploy-master" },
{ text: "Server Deployment", link: "/en/deploy-server" },
{ text: "Client Deployment", link: "/en/deploy-client" },
],
},
{
text: "Configuration",
collapsed: false,
link: "/en/all-configs",
},
{
text: "Contribution Guide",
collapsed: false,
link: "/en/contribute",
},
{
text: "Screenshots",
collapsed: false,
link: "/en/screenshots",
},
],
socialLinks: [
{ icon: "github", link: "https://github.com/vaalacat/frp-panel" },
],
},
};