From a1b6d7a2d25600bc13414b147f3f3cbec3b7662b Mon Sep 17 00:00:00 2001 From: Matt Gabrenya Date: Tue, 25 Feb 2025 20:01:45 -0700 Subject: [PATCH] fix(ui): redirect /index.html -> / for use in launcher --- ui/src/router.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/src/router.ts b/ui/src/router.ts index 05a35111..8e3ebc4a 100644 --- a/ui/src/router.ts +++ b/ui/src/router.ts @@ -34,6 +34,10 @@ export const routes: RouteRecordRaw[] = [ redirect: () => getHomeRedirect() ? { path: ROUTES.discover } : { name: ROUTES.feed }, }, + { + path: "/index.html", + redirect: () => "/" + }, { path: "/feed", name: ROUTES.feed,