Skip to content

Commit

Permalink
Merge pull request #3445 from tilalx/develop
Browse files Browse the repository at this point in the history
Update the vuepress config.js to fix pr/3395
  • Loading branch information
jc21 committed Jan 10, 2024
2 parents 96fc6a2 + d19ebf5 commit 58ef9a6
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,46 +45,55 @@ export default defineUserConfig({
],
sidebar: {
'/': [
{
text: 'Home',
link: '/'
},
{
text: 'Guide',
children: ['/guide/README.md'],
link: '/guide/',
collapsible: true,
},
{
text: 'Screenshots',
children: ['/screenshots/README.md'],
link: '/screenshots/',
collapsible: true,
},
{
text: 'Setup',
children: ['/setup/README.md'],
text: 'Setup Instructions',
link: '/setup/',
collapsible: true,
},
{
text: 'Advanced Configuration',
children: ['/advanced-config/README.md'],
link: '/advanced-config/',
collapsible: true,
},
{
text: 'Upgrading',
children: ['/upgrading/README.md'],
link: '/upgrading/',
collapsible: true,
},
{
text: 'Frequently Asked Questions',
children: ['/faq/README.md'],
link: '/faq/',
collapsible: true,
},
{
text: 'Third Party',
children: ['/third-party/README.md'],
link: '/third-party/',
collapsible: true,
},
],
},
}
}
}),
markdown: {
code: {
lineNumbers: false,
},
},
plugins: [
googleAnalyticsPlugin({
id: 'UA-99675467-4'
Expand Down

0 comments on commit 58ef9a6

Please sign in to comment.