fix: kiosk boot loop — redirect /kiosk to / for proper boot screen
Some checks failed
Build Archipelago ISO (dev) / build-iso (push) Has been cancelled
Some checks failed
Build Archipelago ISO (dev) / build-iso (push) Has been cancelled
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:
@@ -86,7 +86,7 @@ const router = createRouter({
|
||||
{
|
||||
path: '/kiosk',
|
||||
name: 'kiosk',
|
||||
redirect: '/dashboard',
|
||||
redirect: '/',
|
||||
},
|
||||
{
|
||||
path: '/dashboard',
|
||||
|
||||
Reference in New Issue
Block a user