fix(server/esbuild): runtime error due to missing jsdom

This commit is contained in:
Elian Doran 2025-05-23 16:39:34 +03:00
parent 1a49a25a7d
commit 306d75e3f3
No known key found for this signature in database

View File

@ -183,7 +183,7 @@
"electron",
"@electron/remote",
"better-sqlite3",
"jsdom"
"./xhr-sync-worker.js"
],
"format": [
"cjs"
@ -232,6 +232,11 @@
"glob": "**/*",
"input": "apps/server/node_modules/file-uri-to-path",
"output": "node_modules/file-uri-to-path"
},
{
"glob": "xhr-sync-worker.js",
"input": "apps/server/node_modules/jsdom/lib/jsdom/living/xhr",
"output": ""
}
]
}