summaryrefslogtreecommitdiff
path: root/examples/docs/src/config.ts
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-06-14 12:45:33 -0700
committerGravatar GitHub <noreply@github.com> 2021-06-14 15:45:33 -0400
commit1437b42038bf5daa0ad9e9be41d25f04a8ec97d3 (patch)
tree5d8b63ceddeb6c3475f86441ee84ff365448a49f /examples/docs/src/config.ts
parent40720b2c1e6db7d8df9d3f717cd5288363ed17a5 (diff)
downloadastro-1437b42038bf5daa0ad9e9be41d25f04a8ec97d3.tar.gz
astro-1437b42038bf5daa0ad9e9be41d25f04a8ec97d3.tar.zst
astro-1437b42038bf5daa0ad9e9be41d25f04a8ec97d3.zip
fix some example docs site issues (#434)
Diffstat (limited to 'examples/docs/src/config.ts')
-rw-r--r--examples/docs/src/config.ts6
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' },
],
},
];