From 68f687bffcacb1d95438501b6192702326589ca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Fl=C3=BCckiger?= <91982622+JoFlucki@users.noreply.github.com> Date: Thu, 2 May 2024 14:36:39 +0200 Subject: [PATCH] Added Vite target --- frontend/vite.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/vite.config.js b/frontend/vite.config.js index 3d90b05..35ad8d9 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -11,4 +11,7 @@ export default defineConfig({ "@": fileURLToPath(new URL("./src", import.meta.url)), }, }, + build: { + target: 'esnext' + } })