Ver código fonte

fix: change max page to crawl to 50

Poranut Chollavorn 1 ano atrás
pai
commit
1700bd8c7d
2 arquivos alterados com 2 adições e 2 exclusões
  1. 1 1
      README.md
  2. 1 1
      config.ts

+ 1 - 1
README.md

@@ -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",
 };
 ```

+ 1 - 1
config.ts

@@ -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",
 };