Merge pull request #607 from mendableai/fix/v1-maxDepth

fix(v1): maxDepth
This commit is contained in:
Nicolas 2024-09-02 10:42:51 -03:00 committed by GitHub
commit 11971da359
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -302,7 +302,7 @@ export function legacyCrawlerOptions(x: CrawlerOptions) {
includes: x.includePaths,
excludes: x.excludePaths,
maxCrawledLinks: x.limit,
maxCrawledDepth: x.maxDepth,
maxDepth: x.maxDepth,
limit: x.limit,
generateImgAltText: false,
allowBackwardCrawling: x.allowBackwardLinks,