fixup navbar

This commit is contained in:
SoilZHu
2025-09-25 20:01:25 +08:00
parent c773faff65
commit db2119acc7
3 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import fs from 'node:fs'
import path from 'node:path'
const ROOT = process.cwd()
const EXCLUDED_DIRS = new Set(['.git', '.github', '.vitepress', 'node_modules', 'public'])
const EXCLUDED_DIRS = new Set(['.git', '.github', '.vitepress', 'node_modules', 'public', 'docs', 'images', 'docker_support'])
function isDirectory(p) {
return fs.existsSync(p) && fs.statSync(p).isDirectory()