配置优化

This commit is contained in:
2021-01-25 18:08:55 +08:00
parent 38dc4c146e
commit b562a4c1d4
2 changed files with 40 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ module.exports = {
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off"
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"vue/no-parsing-error": [2, { "x-invalid-end-tag": false }]
}
};