Skip to content

Commit 1a3c572

Browse files
feat: update URL processing rules for content generation
- Removed Netlify redirect configuration that was pointing to nocodb.com/blog - Added filter to skip processing of tag-related URLs in docs during content generation - Improved URL handling logic to prevent unnecessary content generation for specific paths
1 parent af9eecf commit 1a3c572

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

netlify.toml

Lines changed: 0 additions & 5 deletions
This file was deleted.

scripts/generate-llm-content.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,11 @@ class LLMContentGenerator {
165165
return null;
166166
}
167167

168+
// Skip tags URLs
169+
if (url.includes("/docs/tags")) {
170+
return null;
171+
}
172+
168173
console.log(`📖 Processing: ${url}`);
169174

170175
// Categorize URL

0 commit comments

Comments
 (0)