feat : add Dashboard to sidebar and redirect / to /dashboard

This commit is contained in:
2026-04-06 16:10:50 +02:00
parent 14ee2f65db
commit 75530ea46a
2 changed files with 9 additions and 2 deletions

View File

@@ -11,6 +11,6 @@ export default defineNuxtRouteMiddleware(async (to) => {
}
if (auth.isAuthenticated && (isLogin || to.path === '/')) {
return navigateTo('/applications')
return navigateTo('/dashboard')
}
})