Skip to content

Commit

Permalink
feat: add sidebar links to other docs
Browse files Browse the repository at this point in the history
  • Loading branch information
robertkibet committed Mar 9, 2023
1 parent a435a84 commit 7159f72
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ export default {
aside: true,
// Navbar Link
nav: [
{
text: 'Finsweet Docs',
items: [
{
text: 'ts-utils',
link: '/get-started',
},
{ text: 'attributes', link: 'https://finsweet.com/attributes', target: '_blank' },
{ text: 'Wized', link: 'https://wized.com/', target: '_blank' },
],
},
{
// Dropdown Menu (Manual for now)
// TODO: there is an open issue for this: https://github.com/vuejs/vitepress/issues/1550
Expand All @@ -32,6 +43,18 @@ export default {
],
// Sidebar
sidebar: [
{
text: 'Finsweet Docs',
collapsed: false,
items: [
{
text: 'ts-utils',
link: '/get-started',
},
{ text: 'attributes', link: 'https://finsweet.com/attributes', target: '_blank' },
{ text: 'Wized', link: 'https://wized.com/', target: '_blank' },
],
},
{
text: 'Table of Contents',
collapsed: false,
Expand Down

0 comments on commit 7159f72

Please sign in to comment.