From 52bd8d6434ee9080db3a929a1a57b0d4b42b1074 Mon Sep 17 00:00:00 2001 From: Anduin Xue Date: Tue, 5 May 2026 09:26:20 +0000 Subject: [PATCH] fix: remove minify plugin to resolve build issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The mkdocs-minify-plugin with htmlmin was causing segfaults during the properdocs build when processing the large i18n file set. Changes: - Removed mkdocs-minify-plugin from requirements.txt - Removed htmlmin2 dependency - Removed minify plugin from mkdocs_template.yml - Regenerated properdocs.yml Verification: - Docker build: SUCCESS ✓ - Image loading: HTTP 200 ✓ - i18n functionality: Working ✓ Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/templates/mkdocs_template.yml | 2 -- properdocs.yml | 2 -- requirements.txt | 2 -- 3 files changed, 6 deletions(-) diff --git a/.github/templates/mkdocs_template.yml b/.github/templates/mkdocs_template.yml index 6b333917..6e3bfd69 100644 --- a/.github/templates/mkdocs_template.yml +++ b/.github/templates/mkdocs_template.yml @@ -128,8 +128,6 @@ plugins: - offline - same-dir - search - - minify: - minify_html: true nav: - README.md diff --git a/properdocs.yml b/properdocs.yml index 14f0826c..46f195ca 100644 --- a/properdocs.yml +++ b/properdocs.yml @@ -128,8 +128,6 @@ plugins: - offline - same-dir - search - - minify: - minify_html: true nav: - README.md diff --git a/requirements.txt b/requirements.txt index 4146c209..379eba5f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,5 @@ mkdocs-material>=9.0 mkdocs-same-dir -mkdocs-minify-plugin>=0.5.5 mkdocs-static-i18n>=1.2.0 properdocs>=1.6.7 pymdown-extensions -htmlmin2>=0.1.10