mirror of
https://github.com/twisterarmy/twister-react.git
synced 2025-08-27 22:32:03 +00:00
14 lines
207 B
JavaScript
14 lines
207 B
JavaScript
import _ from 'lodash';
|
|
|
|
export default (config, options) => {
|
|
if (options.development) {
|
|
config = _.extend({}, config, {
|
|
devtool: 'sourcemap'
|
|
});
|
|
|
|
return config;
|
|
}
|
|
|
|
return config;
|
|
}
|