Skip to content

Commit 27c736e

Browse files
committed
wip(build): fix webpack --config-name
1 parent 845f54d commit 27c736e

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)