diff options
Diffstat (limited to 'examples/docs/src/config.ts')
-rw-r--r-- | examples/docs/src/config.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/docs/src/config.ts b/examples/docs/src/config.ts index 4b6268e23..5ec22a02b 100644 --- a/examples/docs/src/config.ts +++ b/examples/docs/src/config.ts @@ -1,10 +1,10 @@ export const sidebar = [ { text: 'Introduction', - link: '/', + link: '', // No leading slash needed, so this links to the homepage children: [ - { text: 'Getting Started', link: '/getting-started' }, - { text: 'Example', link: '/example' }, + { text: 'Getting Started', link: 'getting-started' }, + { text: 'Example', link: 'example' }, ], }, ]; |