From 53f54197a46d310c36c2db701d5819f0e9295820 Mon Sep 17 00:00:00 2001 From: SoilZHu Date: Thu, 25 Sep 2025 19:52:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86=20'images'=20=E5=92=8C=20'docker=5Fsu?= =?UTF-8?q?pport'=20=E6=B7=BB=E5=8A=A0=E5=88=B0=E6=8E=92=E9=99=A4=E7=9B=AE?= =?UTF-8?q?=E5=BD=95=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vitepress/navSidebar.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vitepress/navSidebar.mjs b/.vitepress/navSidebar.mjs index 645916b..c3d665c 100644 --- a/.vitepress/navSidebar.mjs +++ b/.vitepress/navSidebar.mjs @@ -2,7 +2,7 @@ import fs from 'node:fs' import path from 'node:path' const DOC_EXT = ['.md'] -const EXCLUDED_DIRS = new Set(['.git', '.github', '.vitepress', 'node_modules', 'public', 'docs']) +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()