mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-12-24 11:51:06 +08:00
41 lines
1.1 KiB
TypeScript
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" },
|
|
],
|
|
},
|
|
};
|