Skip to content

Commit be6d2a8

Browse files
committed
Fix a bug where some webpack configuration values were being ignored/overwritten
1 parent 7f4a51b commit be6d2a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/configure.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export default function configure(options) {
9595
}
9696

9797
function webpackProp(name, value) {
98-
let configured = delve(webpackConfig, 'resolve.alias');
98+
let configured = delve(webpackConfig, name);
9999
if (Array.isArray(value)) {
100100
return value.concat(configured || []).filter(dedupe);
101101
}

0 commit comments

Comments
 (0)