From b23b40bdcd9e096abb64133caeeb9e7fdeee297f Mon Sep 17 00:00:00 2001 From: Viswamedha Nalabotu Date: Sat, 7 Mar 2026 18:49:58 +0000 Subject: [PATCH] Added catchall path --- site/src/router/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/site/src/router/index.ts b/site/src/router/index.ts index e658bce..0169373 100644 --- a/site/src/router/index.ts +++ b/site/src/router/index.ts @@ -85,6 +85,11 @@ const router = createRouter({ component: () => import('../views/ProgressDetailView.vue'), meta: { requiresAuth: true }, }, + { + path: '/:pathMatch(.*)*', + name: 'not-found', + component: () => import('../views/NotFoundView.vue'), + }, ], })