server/build.ts

9 lines
161 B
TypeScript
Raw Normal View History

await Bun.build({
entrypoints: ["./index.ts"],
outdir: "./dist",
target: "bun",
splitting: true,
2023-12-08 09:26:24 +01:00
minify: true,
external: ["bullmq", "@prisma/client"],
});