浏览代码

fix: reduce max page to crawl on config

Poranut Chollavorn 1 年之前
父节点
当前提交
aa4a1d7f2f
共有 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: 5,
   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: 1000,
+  maxPagesToCrawl: 5,
   outputFileName: "output.json",
 };