chore(dx/server): remove babel compacting for tiny gain in perf

This commit is contained in:
Elian Doran 2025-08-31 21:05:23 +03:00
parent 1b25275b2e
commit cf1180faa9
No known key found for this signature in database

View File

@ -29,7 +29,11 @@ async function register(app: express.Application) {
base: `/${assetUrlFragment}/`,
root: path.join(srcRoot, "../client"),
plugins: [
preact()
preact({
babel: {
compact: false
}
})
],
define: {
"process.env.IS_PREACT": JSON.stringify("true"),