修复了分配监控的页面自适应

This commit is contained in:
尚鹏暃
2025-05-23 16:13:57 +08:00
parent 97c53f07c8
commit 1a2de7a1c6
2 changed files with 75 additions and 77 deletions

View File

@@ -4,7 +4,7 @@ module.exports = {
node: true,
browser: true,
},
extends: ["plugin:vue/essential", "@vue/standard"],
extends: ["plugin:vue/essential", "eslint:recommended"],
parserOptions: {
parser: "babel-eslint",
},
@@ -35,6 +35,10 @@ module.exports = {
"arrow-spacing": "warn",
semi: ["warn", "never"],
"no-multi-spaces": "warn",
// Turn off console warnings for development
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
},
globals: {
// Define global variables to prevent 'undefined' errors