fix(docs): ignore localhost dead links in VitePress build

The /api/docs tip box links to localhost which fails the dead link
check in CI.
This commit is contained in:
Siddharth Kumar Sah
2026-03-27 13:53:34 +08:00
parent 355022d374
commit 5c4b2a59d3
+1
View File
@@ -6,6 +6,7 @@ export default defineConfig({
base: "/Stirling-Image/",
srcDir: ".",
outDir: "./.vitepress/dist",
ignoreDeadLinks: [/localhost/],
head: [
["meta", { name: "theme-color", content: "#3b82f6" }],