修復第三方插件異常

This commit is contained in:
liaozetao
2023-09-20 18:21:02 +08:00
parent 71f919fcf0
commit 39feecb83c
27 changed files with 12273 additions and 134 deletions

View File

@@ -14,6 +14,8 @@ module.exports = {
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-unused-vars': 'off'
'no-unused-vars': 'off',
'no-useless-escape': 'off',
'no-control-regex': 'off',
}
}