diff --git a/scripts/llm.js b/scripts/llm.js index 65a9204..a5e2eb4 100644 --- a/scripts/llm.js +++ b/scripts/llm.js @@ -29,7 +29,7 @@ async function resolveJumpLinks(titles) { for (const title of Object.keys(fileMap)) { if (fileMap[title]) { const cleanPath = fileMap[title].replace(/\.md$/, ".html"); - map[title] = `${publicBase}/${cleanPath}`; + map[title] = `${cleanPath}`; } } resolveOuter(map);