Skip to content

Commit

Permalink
Merge pull request #3 from pipech/main
Browse files Browse the repository at this point in the history
fix: reduce max page to crawl on config
  • Loading branch information
steve8708 authored Nov 17, 2023
2 parents e9b7a82 + 1700bd8 commit 29fc934
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const config: Config = {
url: "https://www.builder.io/c/docs/developers",
match: "https://www.builder.io/c/docs/**",
selector: `.docs-builder-container`,
maxPagesToCrawl: 1000,
maxPagesToCrawl: 50,
outputFileName: "output.json",
};
```
Expand Down
2 changes: 1 addition & 1 deletion config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ export const config: Config = {
url: "https://www.builder.io/c/docs/developers",
match: "https://www.builder.io/c/docs/**",
selector: `.docs-builder-container`,
maxPagesToCrawl: 1000,
maxPagesToCrawl: 50,
outputFileName: "output.json",
};

0 comments on commit 29fc934

Please sign in to comment.