From 23be39fb8ae25e08234a1d2d038011d65137a4a4 Mon Sep 17 00:00:00 2001 From: David Arnold Date: Thu, 28 Mar 2024 10:04:16 +0100 Subject: [PATCH] fix: alt build root (#238) --- frontend/vite.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vite.config.js b/frontend/vite.config.js index b7314bf78..56291d8c4 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -13,7 +13,7 @@ export default defineConfig({ }, }, build: { - outDir: `../${path.basename(path.resolve('..'))}/public/frontend`, + outDir: `../insights/public/frontend`, emptyOutDir: true, target: 'es2015', sourcemap: true,