From 669e253809ec3f5df29eefbaab9fdb9a4f8adfb9 Mon Sep 17 00:00:00 2001 From: Manfred Riem <15701806+mnriem@users.noreply.github.com> Date: Thu, 16 Apr 2026 14:12:25 -0500 Subject: [PATCH] fix: add reference/*.md to docfx content glob (#2248) Without this, the reference subdirectory pages are not included in the docfx build and return 404 on the published site. --- docs/docfx.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/docfx.json b/docs/docfx.json index dca3f0f57..c34fe84b8 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -4,7 +4,8 @@ { "files": [ "*.md", - "toc.yml" + "toc.yml", + "reference/*.md" ] }, {