mirror of
https://github.com/JessSystemV/zProtect.git
synced 2025-01-08 08:15:28 +00:00
29 lines
488 B
TypeScript
29 lines
488 B
TypeScript
|
import type { SidebarConfig } from '@vuepress/theme-default'
|
||
|
|
||
|
export const sidebarEn: SidebarConfig = {
|
||
|
'/': [
|
||
|
{
|
||
|
text: 'Documentation',
|
||
|
children: [
|
||
|
'/index.md',
|
||
|
'/config.md',
|
||
|
'/commandline.md',
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
text: 'Changelog',
|
||
|
children: [
|
||
|
'/changelog/0.2.md',
|
||
|
'/changelog/0.1.md',
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
text: 'Legal',
|
||
|
children: [
|
||
|
'/privacy.md',
|
||
|
'/terms.md',
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
};
|