astro/examples/docs/src/config.ts
Laura Caroline 348d829e94
Fix/issue #385 (#392)
* Apply favicon to the docs template

* Fix Sidebar category headers aren't clickable

Fixes #385

* Improve Docs example documentation

* Fix Documentation List on getting started page
2021-06-11 15:55:13 -04:00

10 lines
208 B
TypeScript

export const sidebar = [
{
text: 'Introduction',
link: '/',
children: [
{ text: 'Getting Started', link: '/getting-started' },
{ text: 'Example', link: '/example' },
],
},
];