server/build.ts

9 lines
162 B
TypeScript
Raw Normal View History

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