43 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-03-14 15:40:53 +08:00
module.exports = {
plugins: [
'@vuepress/back-to-top'
],
2021-03-15 14:00:29 +08:00
base: '/Xray-docs-next/',
2021-03-14 15:40:53 +08:00
locales: {
'/': {
lang: 'zh-CN',
title: 'Project X',
description: 'Xray 官方文档'
}
},
themeConfig: {
displayAllHeaders: true,
smoothScroll: true,
repo: 'xtls/xray-core',
repoLabel: '查看源码',
docsRepo: 'xtls/xtls.github.io',
editLinks: true,
editLinkText: '帮助我们改善此页面!',
nav: [
{ text: '首页', link: '/' },
{ text: '大史记', link: '/about/news' },
{ text: '经典文档', link: 'https://xtls.github.io' },
{ text: '下载核心', link: 'https://github.com/XTLS/Xray-core/releases' },
{
text: '多语言',
ariaLabel: 'Language Menu',
items: [
{ text: '简体中文', link: '/' },
{ text: 'English', link: '/en' }
]
},
],
},
markdown: {
toc: {
includeLevel: [2]
}
}
2021-03-15 14:00:29 +08:00
}