Sfoglia il codice sorgente

Merge pull request #3 from pipech/main

fix: reduce max page to crawl on config
Steve Sewell 1 anno fa
parent
commit
29fc934def
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  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: 1000,
+  maxPagesToCrawl: 50,
   outputFileName: "output.json",
 };
 ```

+ 1 - 1
config.ts

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