Skip to content

Commit 3f922fe

Browse files
fix static pages
1 parent e444cb9 commit 3f922fe

9 files changed

+3241
-3380
lines changed

.eslintrc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = {
55
},
66
extends: ["plugin:vue/essential", "eslint:recommended"],
77
rules: {
8-
"no-console": import.meta.env.NODE_ENV === "production" ? "error" : "off",
9-
"no-debugger": import.meta.env.NODE_ENV === "production" ? "error" : "off",
8+
"no-console": import.meta.env.MODE === "production" ? "error" : "off",
9+
"no-debugger": import.meta.env.MODE === "production" ? "error" : "off",
1010
},
1111
};

0 commit comments

Comments
 (0)