--- // src/pages/docs/[...path].astro export async function getStaticPaths() { return [ { params: { path: 'guides/getting-started' } }, { params: { path: 'reference/config' } }, { params: { path: undefined } }, ]; } const { path } = Astro.params; ---

{path ?? 'Docs Home'}