We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3892483 commit 6486764Copy full SHA for 6486764
1 file changed
src/index.js
@@ -34,7 +34,9 @@ module.exports = [
34
if (!item.configuration.skipTarget) {
35
item.configuration.skipTarget = [];
36
}
37
- item.configuration.skipTarget.concat([ 'vue-cli', 'vue-cli-plugin' ]); // 统一适配 vue-cli
+ item.configuration.skipTarget.push( // 统一适配 vue-cli
38
+ 'vue-cli-plugin'
39
+ );
40
41
return item;
42
}),
0 commit comments