proxy-based Twister client written with react-js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

15 lines
264 B

import _ from 'lodash';
export default (config, options) => {
if (options.optimize) {
config = _.extend({}, config, {
output: _.extend({}, config.output, {
filename: '[name].min.js'
})
});
return config;
}
return config;
}