X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Fsrc%2Frouter%2Findex.ts;h=4e731af0fc1f4d1aa14b8da8f6e58ad9bc574997;hb=98262391ccaa5d00fac1ec8a1707d7fbba33cc3a;hp=4a52c411a0cbc7ce4cb575414546c6236d07b45c;hpb=0f71040c472ecc24460c7bf791c35a9e9fbef27c;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/src/router/index.ts b/ui/web/src/router/index.ts index 4a52c411..4e731af0 100644 --- a/ui/web/src/router/index.ts +++ b/ui/web/src/router/index.ts @@ -1,4 +1,4 @@ -import { createRouter, createWebHistory, type RouteRecordRaw } from 'vue-router'; +import { type RouteRecordRaw, createRouter, createWebHistory } from 'vue-router'; import ChargingStationsView from '@/views/ChargingStationsView.vue'; const routes: RouteRecordRaw[] = [ @@ -10,7 +10,7 @@ const routes: RouteRecordRaw[] = [ ]; const router = createRouter({ - history: createWebHistory(process.env.BASE_URL), + history: createWebHistory(), routes, });