From 5239836e0fc3f7c2cc744ba97ab5bdb4577f2771 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Mon, 29 Jan 2024 05:28:14 -0500 Subject: [PATCH] set source map to inline --- backend/tsup.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/tsup.config.js b/backend/tsup.config.js index 2cc687afc..f758e749c 100644 --- a/backend/tsup.config.js +++ b/backend/tsup.config.js @@ -9,5 +9,6 @@ export default defineConfig({ }, external: ["../../../frontend/node_modules/next/dist/server/next-server.js"], outDir: "dist", - entry: ["./src"] + entry: ["./src"], + sourceMap: "inline" });