From c21059e808b8eb089edb20e13e350641bb108b50 Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Fri, 8 Aug 2025 11:00:38 -0400 Subject: [PATCH] Fix GitHub Pages documentation by adding .nojekyll file GitHub Pages uses Jekyll by default, which ignores directories starting with underscores. This causes CSS and JS assets in _build and _assets directories to not be served. Adding .nojekyll file tells GitHub Pages to serve the site as static HTML without Jekyll processing. Fixes #423 --- Makefile | 1 + docs/.nojekyll | 0 2 files changed, 1 insertion(+) create mode 100644 docs/.nojekyll diff --git a/Makefile b/Makefile index 775a4126..4124babc 100644 --- a/Makefile +++ b/Makefile @@ -40,6 +40,7 @@ documentation: rm -f _toc.yml && \ myst clean && \ timeout 10 myst build --html || true + cd docs && test -d _build/html && touch _build/html/.nojekyll || true documentation-build: cd docs && \ diff --git a/docs/.nojekyll b/docs/.nojekyll new file mode 100644 index 00000000..e69de29b