From 55facfbc2139a6f26d81b9d768fdc2a58c8f3ecd Mon Sep 17 00:00:00 2001 From: James Greenhill Date: Tue, 30 Jan 2024 12:22:20 -0800 Subject: [PATCH] set the output dir to build --- frontend/vite.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 8bb5a58..201371a 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -24,4 +24,7 @@ export default defineConfig({ }, }, base: process.env.NODE_ENV === "production" ? "/webapp/" : "/", + build: { + outDir: "./build" + } })