From 1e0176b9e1e389a51eb5c906da37ce71cd7e3a10 Mon Sep 17 00:00:00 2001 From: Anatoli Nicolae Date: Thu, 27 Jun 2024 09:14:29 +0200 Subject: [PATCH] Fix dead links check --- .vitepress/config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.vitepress/config.ts b/.vitepress/config.ts index ecf261e..e26fb7f 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -70,4 +70,8 @@ export default defineConfigWithTheme({ }, cleanUrls: true, lastUpdated: true, + ignoreDeadLinks: [ + // ignore all localhost links + /^https?:\/\/localhost/, + ] });