From 97e29dc2cf2d74648a8ad9759175ce13305a5e4e Mon Sep 17 00:00:00 2001 From: Accusys Date: Mon, 18 May 2026 10:11:48 +0800 Subject: [PATCH] fix: WASM doc fetch path /doc/modules -> /doc-wasm/modules --- docs_v1.0/doc_wasm/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_v1.0/doc_wasm/index.html b/docs_v1.0/doc_wasm/index.html index 7789a3d..5cf0227 100644 --- a/docs_v1.0/doc_wasm/index.html +++ b/docs_v1.0/doc_wasm/index.html @@ -59,7 +59,7 @@ async function loadDoc(name) { const el = document.getElementById('content'); el.classList.add('loading'); try { - const resp = await fetch(`/doc/modules/${name}.md`); + const resp = await fetch(`/doc-wasm/modules/${name}.md`); if (!resp.ok) throw new Error(`HTTP ${resp.status}`); const md = await resp.text(); el.innerHTML = render_markdown(md);