UNPKG

reactui

Version:

A components library for ReactJS. This is part of the Gearz project

16 lines (12 loc) 279 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; }