Added catchall path

This commit is contained in:
Viswamedha Nalabotu 2026-03-07 18:49:58 +00:00
parent 418bb83076
commit b23b40bdcd

View file

@ -85,6 +85,11 @@ const router = createRouter({
component: () => import('../views/ProgressDetailView.vue'), component: () => import('../views/ProgressDetailView.vue'),
meta: { requiresAuth: true }, meta: { requiresAuth: true },
}, },
{
path: '/:pathMatch(.*)*',
name: 'not-found',
component: () => import('../views/NotFoundView.vue'),
},
], ],
}) })