2025SELab2-project-Dwengo/frontend/vite.config.ts
Timo De Meyst fbf53c3d36 fix: update vite config
config aangepast zodat project kan gebuild worden met top-level awaits
2025-03-16 17:15:51 +01:00

18 lines
469 B
TypeScript

import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import vueDevTools from "vite-plugin-vue-devtools";
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
build: {
target: 'esnext' //browsers can handle the latest ES features
},
});