server/build.ts
2023-12-07 22:25:31 -10:00

9 lines
162 B
TypeScript

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