diff --git a/scrape-blog.ts b/scrape-blog.ts index 68187bc..5fa8e80 100644 --- a/scrape-blog.ts +++ b/scrape-blog.ts @@ -92,7 +92,7 @@ async function fetchBlogPosts(): Promise { // Process posts sequentially with delay const results = []; - for (const url of postUrls.slice(0, 10)) { // Limit to 10 posts for initial testing + for (const url of postUrls) { // Process all posts results.push(await processPost(url)); }