From bf58ad075355f20448d8e9c3429f944870d74851 Mon Sep 17 00:00:00 2001 From: ThetaSinner Date: Wed, 18 Dec 2024 22:13:31 +0000 Subject: [PATCH] Fix for running on launcher --- ui/src/router.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/src/router.ts b/ui/src/router.ts index 72db48d..2f330bf 100644 --- a/ui/src/router.ts +++ b/ui/src/router.ts @@ -1,7 +1,8 @@ -import { createRouter, createWebHistory } from "vue-router"; +import {createRouter, createWebHashHistory, createWebHistory} from "vue-router"; const router = createRouter({ - history: createWebHistory(), + // history: createWebHistory(), + history: createWebHashHistory(), routes: [ { path: "/", component: () => import("./pages/HomePage.vue") }, { path: "/search", component: () => import("./pages/SearchPage.vue") },