60 lines
1.6 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: {
smoothScroll: true,
repo: 'xtls/xray-core',
repoLabel: '查看源码',
2021-03-15 23:59:11 +08:00
docsRepo: 'xtls/Xray-docs-next',
docsBranch: 'main',
2021-03-14 15:40:53 +08:00
editLinks: true,
editLinkText: '帮助我们改善此页面!',
nav: [
{ text: '首页', link: '/' },
{ text: '大史记', link: '/about/news' },
2021-03-15 23:59:11 +08:00
{ text: '配置指南', link: '/config/' },
{ text: '开发指南', link: '/development/' },
{ text: '使用指南', link: '/usage/' },
2021-03-14 15:40:53 +08:00
{
text: '多语言',
ariaLabel: 'Language Menu',
items: [
{ text: '简体中文', link: '/' },
{ text: 'English', link: '/en' }
]
},
],
2021-03-15 23:59:11 +08:00
sidebar: {
'/config/': [
{
title: '示例配置',
collapsable: false,
children: [
'examples/vless',
'examples/xtls',
'examples/fallback',
'examples/env',
'examples/multiple'
]
},
],
'/': 'auto',
}
2021-03-14 15:40:53 +08:00
},
markdown: {
toc: {
includeLevel: [2]
}
}
2021-03-15 14:00:29 +08:00
}