Skip to content

Commit

Permalink
Fix config order
Browse files Browse the repository at this point in the history
  • Loading branch information
taion committed Aug 8, 2016
1 parent d14ad18 commit 9a490a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resolvers/webpack/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function createResolveSync(configPath, webpackConfig) {
function createWebpack2ResolveSync(webpackRequire, resolveConfig) {
var EnhancedResolve = webpackRequire('enhanced-resolve')

return EnhancedResolve.create.sync(assign({}, resolveConfig, webpack2DefaultResolveConfig))
return EnhancedResolve.create.sync(assign({}, webpack2DefaultResolveConfig, resolveConfig))
}

/**
Expand Down

0 comments on commit 9a490a9

Please sign in to comment.