zProtect/docs/.vuepress/config/sidebar/en.ts
2023-01-29 09:27:22 -03:00

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',
],
},
],
};