diff --git a/.jules/bolt.md b/.jules/bolt.md new file mode 100644 index 0000000..66155a7 --- /dev/null +++ b/.jules/bolt.md @@ -0,0 +1,8 @@ +# Bolt's Journal + +This journal tracks critical performance learnings, failed experiments, and architectural bottlenecks. + +## Template +## YYYY-MM-DD - [Title] +**Learning:** [Insight] +**Action:** [How to apply next time] diff --git a/backend/src/utils/htmlExtractor.ts b/backend/src/utils/htmlExtractor.ts index 06a3bfc..953116a 100644 --- a/backend/src/utils/htmlExtractor.ts +++ b/backend/src/utils/htmlExtractor.ts @@ -296,7 +296,7 @@ export function extractContentWithXPath( throw new Error(`HTML解析致命错误: ${msg}`); }, }; - console.log("html", html); + // Removed console.log("html", html) to prevent performance issues with large HTML strings const doc = new DOMParser({ errorHandler: errorHandler, }).parseFromString(html);