fix(server/esbuild): dependencies not bundled

This commit is contained in:
Elian Doran 2025-05-22 21:22:35 +03:00
parent 867dd70c02
commit f859114231
No known key found for this signature in database

View File

@ -188,6 +188,10 @@
"outputFileName": "main.js", "outputFileName": "main.js",
"tsConfig": "apps/server/tsconfig.app.json", "tsConfig": "apps/server/tsconfig.app.json",
"platform": "node", "platform": "node",
"external": [
"electron",
"@electron/remote"
],
"format": [ "format": [
"esm" "esm"
], ],
@ -206,6 +210,7 @@
}, },
"production": { "production": {
"minify": true, "minify": true,
"thirdParty": true,
"assets": [ "assets": [
{ {
"glob": "**/*", "glob": "**/*",