fix: Unmatched /docs/* subroutes silently render empty DocsView (#347)

This commit is contained in:
openhands 2026-02-28 10:12:10 +00:00
parent 7f0aca8377
commit ca1ad9467c

View file

@ -107,6 +107,10 @@ const router = createRouter({
alias: ['/docs/Code'],
component: () => import('../views/docs/CodeDocs.vue'),
},
{
path: ':pathMatch(.*)*',
redirect: '/docs/introduction',
},
],
},
{