Skip to content

Commit d22fcfd

Browse files
committed
Fix loader [bug](webpack/webpack#888)
1 parent fa58fed commit d22fcfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/templates/webpack/development.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module.exports = _.merge(defaultConfig, {
3333
]
3434
}, function(obj1, obj2) {
3535
// concats plugins
36-
if (_.isArray(obj1) && _.isArray(obj2)) { return obj1.concat(obj2); }
36+
if (_.isArray(obj1) && _.isArray(obj2)) { return obj2.concat(obj1); }
3737
// push entry into array for react hot dev
3838
if (_.isString(obj1) && _.isArray(obj2)) { obj2.push(obj1); return obj2; }
3939
});

0 commit comments

Comments
 (0)