Created app with and tried to build prod for android for test and got that message. No changes to default code!
And build-cordova-android-dev works great )))
fixed out)
in webpack.config.js on line 166 comment warnings: false, and it works)
Created app with and tried to build prod for android for test and got that message. No changes to default code!
And build-cordova-android-dev works great )))
fixed out)
in webpack.config.js on line 166 comment warnings: false, and it works)
I had the same problem. It’s caused by the configuration setup for Uglify.js. You need to modify build/webpack.config.js. Change the following:
uglifyOptions: {
compress: {
warnings: false,
},
},
To
uglifyOptions: {
warnings: false,
},
I had the same problem…
Updating your framework7-cli
to 2.3.2 (latest) will fix the problem