fix(nx/server): disable chunking for prod

This commit is contained in:
Elian Doran 2025-04-24 14:36:25 +03:00
parent 258fe2e452
commit ab2f0eed74
No known key found for this signature in database

View File

@ -63,7 +63,7 @@ module.exports = {
quietDeps: true
}
},
outputHashing: process.env['NODE_ENV'] === 'production' ? 'all' : 'none',
outputHashing: false,
optimization: process.env['NODE_ENV'] === 'production',
})
],