Skip to content

Commit 6c0bb4c

Browse files
authored
feat: add function plugin (#12)
1 parent 74bd12f commit 6c0bb4c

File tree

7 files changed

+1693
-766
lines changed

7 files changed

+1693
-766
lines changed

.vitepress/config.mts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ export default defineConfig({
1111
editLink: {
1212
pattern: 'https://github.com/webhookx-io/docs.webhookx.io/edit/main/:path'
1313
},
14+
outline: {
15+
level: [2, 3],
16+
},
1417

1518
nav: [
1619
{
@@ -69,6 +72,25 @@ function sidebarDocs(): DefaultTheme.SidebarItem[] {
6972
{ text: 'Overview', link: 'docs/admin/overview' },
7073
]
7174
},
75+
{
76+
text: "Plugins",
77+
items: [
78+
{ text: 'Overview', link: 'docs/plugin/index' },
79+
{
80+
text: 'Inbound Plugins',
81+
items: [
82+
{ text: 'Function', link: 'docs/plugin/function' }
83+
]
84+
},
85+
{
86+
text: 'Outbound Plugins',
87+
items: [
88+
{ text: 'Signature', link: 'docs/plugin/webhookx-signature' },
89+
{ text: 'WebAssembly', link: 'docs/plugin/wasm' }
90+
]
91+
},
92+
]
93+
},
7294
{
7395
text: "References",
7496
items: [

0 commit comments

Comments
 (0)