Skip to content
5 changes: 4 additions & 1 deletion docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,10 @@ export default defineConfig({
starlightLinksValidator({
errorOnRelativeLinks: true,
errorOnLocalLinks: true,
exclude: ({ file, link }) => file.includes("/src/generated/workshop-markdown/") && link.includes("?__gh_aw_workshop_local__=") && link.startsWith("/gh-aw/workshop/?__gh_aw_workshop_local__="),
exclude: ({ file, link }) =>
(file.includes("/src/generated/workshop-markdown/") && link.includes("?__gh_aw_workshop_local__=") && link.startsWith("/gh-aw/workshop/?__gh_aw_workshop_local__=")) ||
link === "/gh-aw/gallery/ai-issue-triage/" ||
link === "/gh-aw/gallery/ci-failure-investigation/",
}),
],
sidebar: [
Expand Down
Loading