Changelog
- Ability to customize the file to get minified by using
config.jsminandconfig.cssmin. In addtion ofconfig.jsminAppendandconfig.cssminAppendto extend default rules.
config.jsmin & config.cssmin
These need to be arrays, it replaces the default location of files to be minified:
Example:
config.jsmin = ['./assets/js/**/*.js'];config.jsminAppend & config.cssminAppend
These need to be arrays, it appends rules:
Example:
config.jsminAppend = ['!./assets/js/vue-*.js'];In the example above, all *.js files will be minified, except those with prefix vue-.