Skip to content

Commit

Permalink
Fix for running on launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Dec 18, 2024
1 parent 75955b4 commit bf58ad0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ui/src/router.ts
Original file line number Diff line number Diff line change
@@ -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") },
Expand Down

0 comments on commit bf58ad0

Please sign in to comment.