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);