Fix: docs build path

This commit is contained in:
Dreamacro 2023-05-15 22:35:03 +08:00
parent 7d9723662c
commit fdb1456c69
2 changed files with 8 additions and 6 deletions

View File

@ -10,7 +10,7 @@ function getMetadataFromDoc(path: string): { sidebarTitle?: string, sidebarOrder
}
function generateSidebarChapter(chapterDirName: string): any {
const chapterPath = `./docs/${chapterDirName}`
const chapterPath = `./${chapterDirName}`
const tree = directoryTree(chapterPath)
if (!tree || !tree.children) {
@ -65,8 +65,10 @@ chapters[0]['items'][0]['link'] = '/'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Clash",
description: "Rule-based Tunnel",
title: 'Clash',
description: 'Rule-based Tunnel',
base: '/clash/',
themeConfig: {
outline: 'deep',

View File

@ -1,8 +1,8 @@
{
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview"
},
"devDependencies": {
"@types/node": "^20.1.4",