feat: remove test limit to process all blog posts

main
brobert (aider) 3 months ago
parent 9cde2dbed1
commit 18c699b1f4

@ -92,7 +92,7 @@ async function fetchBlogPosts(): Promise<BlogPost[]> {
// 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));
}

Loading…
Cancel
Save