From 2dfa9009faa9d9e8fbb41ccea161a9f208beb063 Mon Sep 17 00:00:00 2001 From: Manfred Riem <15701806+mnriem@users.noreply.github.com> Date: Thu, 16 Apr 2026 14:07:16 -0500 Subject: [PATCH] fix: add reference/*.md to docfx content glob 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 dca3f0f578..c34fe84b84 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -4,7 +4,8 @@ { "files": [ "*.md", - "toc.yml" + "toc.yml", + "reference/*.md" ] }, {