build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / ui / web / src / router / index.ts
index 5a6eca115af9618365f979339fed312ca325991d..b58a4d2a506d7e5f9c9f94a153bd1d7a7d0061ee 100644 (file)
@@ -1,5 +1,5 @@
-import { type RouteRecordRaw, createRouter, createWebHistory } from 'vue-router';
-import ChargingStationsView from '@/views/ChargingStationsView.vue';
+import { type RouteRecordRaw, createRouter, createWebHistory } from 'vue-router'
+import ChargingStationsView from '@/views/ChargingStationsView.vue'
 
 const routes: RouteRecordRaw[] = [
   {
@@ -7,11 +7,11 @@ const routes: RouteRecordRaw[] = [
     name: 'charging-stations',
     component: ChargingStationsView,
   },
-];
+]
 
 const router = createRouter({
-  history: createWebHistory(process.env.BASE_URL),
+  history: createWebHistory(),
   routes,
-});
+})
 
-export default router;
+export default router