fix: cannot build prod and delete unused file

This commit is contained in:
2026-07-08 18:42:54 +02:00
parent 73dd672fdb
commit 99a1097053
6 changed files with 32 additions and 19 deletions
+10 -2
View File
@@ -1,5 +1,13 @@
import js from "@eslint/js";
import globals from "globals";
export default [
js.configs.recommended,
];
js.configs.recommended,
{
languageOptions: {
globals: {
...globals.node,
},
},
},
];