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'), + }, ], })