File tree Expand file tree Collapse file tree 4 files changed +0
-6
lines changed
packages/config-yaml/src/schemas Expand file tree Collapse file tree 4 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -236,7 +236,6 @@ async function configYamlToContinueConfig(options: {
236
236
startUrl : doc . startUrl ,
237
237
rootUrl : doc . rootUrl ,
238
238
faviconUrl : doc . faviconUrl ,
239
- maxDepth : doc . maxDepth ,
240
239
useLocalCrawling : doc . useLocalCrawling ,
241
240
sourceFile : doc . sourceFile ,
242
241
} ) ) ;
Original file line number Diff line number Diff line change @@ -354,7 +354,6 @@ The following configuration example includes:
354
354
- title : My Private Docs
355
355
startUrl : http://10.2.1.2/docs
356
356
faviconUrl : http://10.2.1.2/docs/assets/favicon.ico
357
- maxDepth : 4
358
357
useLocalCrawling : true
359
358
` ` `
360
359
</Tab>
Original file line number Diff line number Diff line change @@ -357,8 +357,6 @@ List of documentation sites to index.
357
357
358
358
- `name` (**required**) : Name of the documentation site, displayed in dropdowns, etc.
359
359
- `startUrl` (**required**) : Start page for crawling - usually root or intro page for docs
360
-
361
- - `maxDepth` : Maximum link depth for crawling. Default `4`
362
360
- `favicon` : URL for site favicon (default is `/favicon.ico` from `startUrl`).
363
361
- `useLocalCrawling` : Skip the default crawler and only crawl using a local crawler.
364
362
@@ -507,7 +505,6 @@ context:
507
505
params:
508
506
startUrl: https://docs.example.com/introduction
509
507
rootUrl: https://docs.example.com
510
- maxDepth: 3
511
508
mcpServers:
512
509
- name: DevServer
513
510
command: npm
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ const docSchema = z.object({
44
44
startUrl : z . string ( ) ,
45
45
rootUrl : z . string ( ) . optional ( ) ,
46
46
faviconUrl : z . string ( ) . optional ( ) ,
47
- maxDepth : z . number ( ) . optional ( ) ,
48
47
useLocalCrawling : z . boolean ( ) . optional ( ) ,
49
48
sourceFile : z . string ( ) . optional ( ) ,
50
49
} ) ;
You can’t perform that action at this time.
0 commit comments