浏览代码

Merge pull request #3 from pipech/main

fix: reduce max page to crawl on config
Steve Sewell 1 年之前
父节点
当前提交
29fc934def
共有 2 个文件被更改,包括 2 次插入2 次删除
  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",
 };