feat: Turn on minifying in build

This commit is contained in:
Jesse Wierzbinski 2023-12-07 22:26:24 -10:00
parent df47fa4750
commit 44aaa87f79
No known key found for this signature in database

View file

@ -3,6 +3,6 @@ await Bun.build({
outdir: "./dist", outdir: "./dist",
target: "bun", target: "bun",
splitting: true, splitting: true,
minify: false, minify: true,
external: ["bullmq", "@prisma/client"], external: ["bullmq", "@prisma/client"],
}); });