test: improve clone() test expectation
[e-mobility-charging-stations-simulator.git] / ui / web / src / router / index.ts
index 5a6eca115af9618365f979339fed312ca325991d..1015d92361787bd1405a90a1f38408cfad7acb43 100644 (file)
@@ -1,17 +1,17 @@
-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[] = [
   {
     path: '/',
     name: 'charging-stations',
-    component: ChargingStationsView,
-  },
-];
+    component: ChargingStationsView
+  }
+]
 
 const router = createRouter({
-  history: createWebHistory(process.env.BASE_URL),
-  routes,
-});
+  history: createWebHistory(),
+  routes
+})
 
-export default router;
+export default router