mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-09 15:38:03 -05:00
feat: changed backend-pg to backend
This commit is contained in:
13
backend/tsup.config.js
Normal file
13
backend/tsup.config.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import { defineConfig } from "tsup";
|
||||
|
||||
export default defineConfig({
|
||||
shims: true,
|
||||
format: "esm",
|
||||
loader: {
|
||||
".handlebars": "copy",
|
||||
".md": "copy"
|
||||
},
|
||||
external: ["../../../frontend/node_modules/next/dist/server/next-server.js"],
|
||||
outDir: "dist",
|
||||
entry: ["./src"]
|
||||
});
|
||||
Reference in New Issue
Block a user