build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / ui / web / vite.config.ts
CommitLineData
84ec8d34
JB
1import { fileURLToPath, URL } from 'node:url'
2
66a7748d
JB
3import vue from '@vitejs/plugin-vue'
4import vueJsx from '@vitejs/plugin-vue-jsx'
84ec8d34 5import { defineConfig } from 'vite'
01ff4231
JB
6
7export default defineConfig({
8 plugins: [vue(), vueJsx()],
9 resolve: {
10 alias: {
a974c8e4
JB
11 '@': fileURLToPath(new URL('./src', import.meta.url))
12 }
13 }
66a7748d 14})