zProtect/docs/.vuepress/config/sidebar/en.ts

29 lines
488 B
TypeScript
Raw Normal View History

2023-01-29 12:27:22 +00:00
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',
],
},
],
};