Can't build template app

Created app with and tried to build prod for android for test and got that message. No changes to default code!54

And build-cordova-android-dev works great )))
52

fixed out)
in webpack.config.js on line 166 comment warnings: false, and it works)

1 Like

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

1 Like