Skip to content

Commit

Permalink
fix loader ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
jamsch0 committed Jun 25, 2019
1 parent a435c74 commit 49dc747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/NormalModuleFactory.js
Expand Up @@ -335,7 +335,7 @@ class NormalModuleFactory extends Tapable {
],
(err, results) => {
if (err) return callback(err);
loaders = results[0].concat(loaders, results[1], results[2]);
loaders = results[0].concat(results[1], loaders, results[2]);
process.nextTick(() => {
const type = settings.type;
const resolveOptions = settings.resolve;
Expand Down

0 comments on commit 49dc747

Please sign in to comment.