Skip to content

Commit

Permalink
fix: change max page to crawl to 50
Browse files Browse the repository at this point in the history
  • Loading branch information
pipech committed Nov 16, 2023
1 parent aa4a1d7 commit 1700bd8
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: 5,
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 @@ -22,6 +22,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: 5,
maxPagesToCrawl: 50,
outputFileName: "output.json",
};

0 comments on commit 1700bd8

Please sign in to comment.