Ionic 2 - app.bundle.js - Minification

Use Grunt-minifed

Add something like this in your gruntfile:

minified : {
files: {
src: [
’/js/src/**/.js’,
’/js/src/
.js’
],
dest: ‘/js/min/’
},
options : {
sourcemap: true,
allinone: false
}
}