Skip to content

Commit b32127e

Browse files
feat(docs): move built-in source as top level navigation (#1119)
feat(docs): move built-in sources to top-level navigation
1 parent ac786d7 commit b32127e

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed
File renamed without changes.

docs/docusaurus.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ const config: Config = {
7373
from: '/ops/targets',
7474
to: '/targets',
7575
},
76+
{
77+
from: '/ops/sources',
78+
to: '/sources',
79+
},
7680
],
7781
},
7882
],

docs/sidebars.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,17 @@ const sidebars: SidebarsConfig = {
3939
label: 'Built-in Operations',
4040
collapsed: false,
4141
items: [
42-
'ops/sources',
4342
'ops/functions',
4443
],
4544
},
45+
{
46+
type: 'category',
47+
label: 'Built-in Sources',
48+
link: { type: 'doc', id: 'sources/index' },
49+
collapsed: true,
50+
items: [
51+
],
52+
},
4653
{
4754
type: 'category',
4855
label: 'Built-in Targets',

0 commit comments

Comments
 (0)