Skip to content

Commit

Permalink
fix: mistakes in prev and next page
Browse files Browse the repository at this point in the history
  • Loading branch information
wouiSB committed Dec 22, 2023
1 parent 2e7e3db commit 0005f67
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
1 change: 1 addition & 0 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import locales from './locales'
export default defineConfig({
title: 'SubConv',
locales: locales.locales,
base: '/',
head: [
['link', { rel: 'icon', href: '/favicon.png' }],
],
Expand Down
20 changes: 10 additions & 10 deletions docs/.vitepress/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,34 +38,34 @@ function sidebarGuide() {
text: 'Introduction',
collapsed: false,
items: [
{ text: 'What is SubConv', link: '../introduction/what-is-subconv' },
{ text: 'Why SubConv', link: '../introduction/why-subconv' },
{ text: 'Getting Started', link: '../introduction/getting-started' }
{ text: 'What is SubConv', link: '/guide/introduction/what-is-subconv' },
{ text: 'Why SubConv', link: '/guide/introduction/why-subconv' },
{ text: 'Getting Started', link: '/guide/introduction/getting-started' }
]
},
{
text: 'Deploy',
collapsed: false,
items: [
{ text: 'Deploy on Vercel', link: '../deploy/vercel' },
{ text: 'Deploy on VPS or PC', link: '../deploy/vps' },
{ text: 'How to Update', link: '../deploy/update' }
{ text: 'Deploy on Vercel', link: '/guide/deploy/vercel' },
{ text: 'Deploy on VPS or PC', link: '/guide/deploy/vps' },
{ text: 'How to Update', link: '/guide/deploy/update' }
]
},
{
text: 'Configuration',
collapsed: false,
items: [
{ text: 'Rule Set', link: '../configuration/rule-set' },
{ text: 'Proxy Groups', link: '../configuration/proxy-groups' },
{ text: 'Cache Rules Automatically', link: '../configuration/cache' }
{ text: 'Rule Set', link: '/guide/configuration/rule-set' },
{ text: 'Proxy Groups', link: '/guide/configuration/proxy-groups' },
{ text: 'Cache Rules Automatically', link: '/guide/configuration/cache' }
]
},
{
text: 'Advanced Usage',
collapsed: false,
items: [
{ text: 'APIs', link: '../advanced-usage/apis' }
{ text: 'APIs', link: '/guide/advanced-usage/apis' }
]
}
]
Expand Down
20 changes: 10 additions & 10 deletions docs/.vitepress/locales/zh_CN.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,34 +38,34 @@ function sidebarGuide() {
text: '简介',
collapsed: false,
items: [
{ text: '什么是 SubConv', link: '../introduction/what-is-subconv' },
{ text: '为什么使用 SubConv', link: '../introduction/why-subconv' },
{ text: '开始使用', link: '../introduction/getting-started' }
{ text: '什么是 SubConv', link: '/zh_CN/guide/introduction/what-is-subconv' },
{ text: '为什么使用 SubConv', link: '/zh_CN/guide/introduction/why-subconv' },
{ text: '开始使用', link: '/zh_CN/guide/introduction/getting-started' }
]
},
{
text: '部署',
collapsed: false,
items: [
{ text: '在 Vercel 上部署', link: '../deploy/vercel' },
{ text: '在 VPS 或 PC 上部署', link: '../deploy/vps' },
{ text: '如何更新', link: '../deploy/update' }
{ text: '在 Vercel 上部署', link: '/zh_CN/guide/deploy/vercel' },
{ text: '在 VPS 或 PC 上部署', link: '/zh_CN/guide/deploy/vps' },
{ text: '如何更新', link: '/zh_CN/guide/deploy/update' }
]
},
{
text: '配置',
collapsed: false,
items: [
{ text: '规则集', link: '../configuration/rule-set' },
{ text: 'Proxy Groups', link: '../configuration/proxy-groups' },
{ text: '规则自动缓存', link: '../configuration/cache' }
{ text: '规则集', link: '/zh_CN/guide/configuration/rule-set' },
{ text: 'Proxy Groups', link: '/zh_CN/guide/configuration/proxy-groups' },
{ text: '规则自动缓存', link: '/zh_CN/guide/configuration/cache' }
]
},
{
text: '高级用法',
collapsed: false,
items: [
{ text: 'APIs', link: '../advanced-usage/apis' }
{ text: 'APIs', link: '/zh_CN/guide/advanced-usage/apis' }
]
}

Expand Down

0 comments on commit 0005f67

Please sign in to comment.