chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / ui / web / vite.config.ts
index 5ae786e92753488bfd03cb7adf18e96223a98049..a5a1d53342af3729580add99ae03ef4cf7394aa2 100644 (file)
@@ -1,13 +1,13 @@
-import { URL, fileURLToPath } from 'node:url';
-import { defineConfig } from 'vite';
-import vue from '@vitejs/plugin-vue';
-import vueJsx from '@vitejs/plugin-vue-jsx';
+import { URL, fileURLToPath } from 'node:url'
+import { defineConfig } from 'vite'
+import vue from '@vitejs/plugin-vue'
+import vueJsx from '@vitejs/plugin-vue-jsx'
 
 export default defineConfig({
   plugins: [vue(), vueJsx()],
   resolve: {
     alias: {
-      '@': fileURLToPath(new URL('./src', import.meta.url)),
-    },
-  },
-});
+      '@': fileURLToPath(new URL('./src', import.meta.url))
+    }
+  }
+})