server/build.ts
2023-12-07 22:26:24 -10:00

9 lines
161 B
TypeScript

await Bun.build({
entrypoints: ["./index.ts"],
outdir: "./dist",
target: "bun",
splitting: true,
minify: true,
external: ["bullmq", "@prisma/client"],
});