From ca1ad9467cd6bda89d09bd41534c5f4beb85094b Mon Sep 17 00:00:00 2001 From: openhands Date: Sat, 28 Feb 2026 10:12:10 +0000 Subject: [PATCH] fix: Unmatched /docs/* subroutes silently render empty DocsView (#347) --- landing/src/router/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/landing/src/router/index.ts b/landing/src/router/index.ts index 10a55d3..827e988 100644 --- a/landing/src/router/index.ts +++ b/landing/src/router/index.ts @@ -107,6 +107,10 @@ const router = createRouter({ alias: ['/docs/Code'], component: () => import('../views/docs/CodeDocs.vue'), }, + { + path: ':pathMatch(.*)*', + redirect: '/docs/introduction', + }, ], }, {