Update frontend new build dev, proc

This commit is contained in:
admin
2025-09-29 16:30:21 +07:00
parent 7dd5ce8015
commit a337732d47
11 changed files with 349 additions and 148 deletions

15
frontend/.eslintrc.json Normal file
View File

@@ -0,0 +1,15 @@
// .eslintrc.json
{
"root": true,
"extends": ["next/core-web-vitals"],
"parserOptions": {
"ecmaVersion": 2023,
"sourceType": "module"
},
"rules": {
"react/no-unescaped-entities": "off",
"@next/next/no-img-element": "off",
"no-console": ["warn", { "allow": ["warn", "error"] }]
},
"ignorePatterns": ["node_modules/", ".next/", "dist/", "coverage/"]
}