fix: kiosk boot loop — redirect /kiosk to / for proper boot screen

Kiosk was redirecting /kiosk → /dashboard, bypassing RootRedirect
and BootScreen entirely. This caused the kiosk to land on Login.vue
showing "server is starting up" in a loop instead of the proper
terminal-style boot progression screen.

Now /kiosk → / → RootRedirect → BootScreen, matching what remote
browsers see.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dorian 2026-04-07 16:04:58 +01:00
parent d8d472f72c
commit 9eb5d8cee0

View File

@ -86,7 +86,7 @@ const router = createRouter({
{
path: '/kiosk',
name: 'kiosk',
redirect: '/dashboard',
redirect: '/',
},
{
path: '/dashboard',