PHondogo
06/24/2020, 9:16 PMturansky
06/24/2020, 10:07 PMpatch.js for example) in webpack.config.d folder:
if (config.mode === 'production') {
// disable obfuscation
}PHondogo
06/25/2020, 9:21 AMIlya Goncharov [JB]
06/26/2020, 7:28 AMbrowser subtarget in gradle plugin?PHondogo
06/26/2020, 8:29 AMIlya Goncharov [JB]
06/26/2020, 8:32 AMbrowserDevelopmentWebpack instead of browserProductionWebpack , but it disable DCE too. If you want to leave DCE but disable minification, you can set mode to DEVELOPMENT
webpackTask {
mode = DEVELOPMENT // import will be required
}PHondogo
06/26/2020, 9:12 AM