From c62159280704ac5fc100f6eaef74b60d3a2fda41 Mon Sep 17 00:00:00 2001 From: Tuan Dang Date: Thu, 14 Mar 2024 09:31:58 -0700 Subject: [PATCH] Add .pem loader to tsup --- 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 4e182b9d2..9e37870ba 100644 --- a/backend/tsup.config.js +++ b/backend/tsup.config.js @@ -23,7 +23,8 @@ export default defineConfig({ loader: { ".handlebars": "copy", ".md": "copy", - ".txt": "copy" + ".txt": "copy", + ".pem": "copy" }, external: ["../../../frontend/node_modules/next/dist/server/next-server.js"], outDir: "dist",