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:
parent
d8d472f72c
commit
9eb5d8cee0
@ -86,7 +86,7 @@ const router = createRouter({
|
|||||||
{
|
{
|
||||||
path: '/kiosk',
|
path: '/kiosk',
|
||||||
name: 'kiosk',
|
name: 'kiosk',
|
||||||
redirect: '/dashboard',
|
redirect: '/',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/dashboard',
|
path: '/dashboard',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user