From ef86126fc179dc96e0101ac705cfda3bad1f038a Mon Sep 17 00:00:00 2001 From: cyqk_0010 Date: Sun, 27 Apr 2025 20:57:41 +0000 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20.vitepress/config.mts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vitepress/config.mts | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .vitepress/config.mts diff --git a/.vitepress/config.mts b/.vitepress/config.mts new file mode 100644 index 0000000..8994073 --- /dev/null +++ b/.vitepress/config.mts @@ -0,0 +1,29 @@ +import { defineConfig } from 'vitepress' + +// https://vitepress.dev/reference/site-config +export default defineConfig({ + title: "OG:BG", + description: "一个开源的 PUBG 2017 私人服务器。", + themeConfig: { + // https://vitepress.dev/reference/default-theme-config + nav: [ + { text: '首页', link: '/' }, + { text: '快速开始', link: '/quick-start' } + ], + + sidebar: [ + { + text: '快速开始', + items: [ + { text: '开始之前', link: '/quick-start' }, + { text: '其他游戏', link: '/other-game' }, + { text: '加入交流群', link: '/join-group' } + ] + } + ], + + socialLinks: [ + { icon: 'github', link: 'https://github.com/H4TIUX/PUBG2017PS' } + ] + } +})