Skip to content

Commit ca4e0aa

Browse files
Merge pull request #30 from Toilal/webpack-parallel-build
wip(build): fix webpack --config-name
2 parents 845f54d + 27c736e commit ca4e0aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const pkg = require('../package.json');
1717
const distPath = Path.resolve(__dirname, '..', 'dist');
1818

1919
const configure = ({name, vueVersion}) => (env = {}, { mode = 'production', configName }) => {
20-
if (configName && configName.includes(name)) {
20+
if (configName && !configName.includes(name)) {
2121
return {name}
2222
}
2323

0 commit comments

Comments
 (0)