From 15188c584c79125fc25769fa2c075559785c98df Mon Sep 17 00:00:00 2001 From: Peter Date: Fri, 1 Sep 2023 12:48:19 -0400 Subject: [PATCH] Fix prod build issue --- src/router/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/index.ts b/src/router/index.ts index b107140..4b5a42e 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -53,7 +53,7 @@ function castPlayersRouteParams(route: any) { } export const router = createRouter({ - history: createWebHistory(import.meta.env.BASE_URL), + history: createWebHistory(), //import.meta.env.BASE_URL), routes, })