Skip to content

Commit 69f6805

Browse files
authored
fix(cli-service-global): fix no-debugger rule config (#5196)
closes #5194
1 parent 7225649 commit 69f6805

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@vue/cli-service-global/lib/globalConfigPlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ module.exports = function createConfigPlugin (context, entry, asLib) {
115115
},
116116
rules: {
117117
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
118-
'no-debugger': `process.env.NODE_ENV === 'production' ? 'error' : 'off'`
118+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
119119
}
120120
}
121121
}))

0 commit comments

Comments
 (0)