From 836f19e4c77c53064c83bf03c1671d4b5046e019 Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Sat, 22 Nov 2025 18:02:25 -0500 Subject: [PATCH] fixed duplicate URL thing --- ui/src/router/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/router/index.js b/ui/src/router/index.js index 85494d3..8c66d18 100644 --- a/ui/src/router/index.js +++ b/ui/src/router/index.js @@ -2,7 +2,7 @@ import { useUserStore } from '@/stores/user' import { createRouter, createWebHistory } from 'vue-router' const router = createRouter({ - history: createWebHistory(import.meta.env.VITE_APIHOST), + history: createWebHistory(), routes: [ // PUBLIC { path: '/join', component: () => import('@/pages/Join.vue') },