Browse Source

Merge pull request #3 from pipech/main

fix: reduce max page to crawl on config
Steve Sewell 2 năm trước cách đây
mục cha
commit
29fc934def
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  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",
 };