chore: production setup

This commit is contained in:
Nicolas Meienberger
2025-09-27 14:10:15 +02:00
parent 9f3fb8a302
commit 88e310cc4f
18 changed files with 213 additions and 58 deletions

13
apps/server/build.ts Normal file
View File

@@ -0,0 +1,13 @@
await Bun.build({
entrypoints: ["./src/index.ts"],
outdir: "./dist",
target: "bun",
env: "disable",
// sourcemap: "linked",
minify: {
whitespace: true,
identifiers: true,
syntax: true,
},
external: [],
});