From 72c941160a09fdda0b2104cc5d887f7ce26282b0 Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 18 May 2025 19:35:13 -0400 Subject: [PATCH] fix: enable minification in build process --- src/back/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/back/index.ts b/src/back/index.ts index 4688f86..4c4758c 100644 --- a/src/back/index.ts +++ b/src/back/index.ts @@ -7,7 +7,7 @@ const build = async () => { return await Bun.build({ entrypoints: ["./src/front/index.html"], outdir: "./dist", - minify: !development, + minify: true, sourcemap: development ? "inline" : "none", splitting: true, publicPath: "/assets/",