Files
ironmount/apps/server/build.ts
Nicolas Meienberger 88e310cc4f chore: production setup
2025-09-27 14:10:15 +02:00

14 lines
220 B
TypeScript

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