less dev console pollution: https://github.com/facebook/create-react-app/discussions/11767#discussioncomment-1968889
Massimo Melina committed
Mar 7, 2022 at 19:29 UTC
60827b6f579046b7f4e8d5218e7c571f7194ce67
4 files changed
+12
-1
admin/.env
+1
@@ -1 +1,2 @@
1
PORT=3006
2
+GENERATE_SOURCEMAP=false
admin/.eslintrc
new
+8
@@ -0,0 +1,8 @@
1
+{
2
+ "extends": "react-app",
3
+ "rules": {
4
+ "no-mixed-operators": 0,
5
+ "no-ex-assign": 0,
6
+ "no-throw-literal": 0
7
+ }
8
+}
frontend/.env
+1
@@ -1 +1,2 @@
1
PORT=3005
2
+GENERATE_SOURCEMAP=false
frontend/.eslintrc
+2
-1
@@ -2,6 +2,7 @@
2
"extends": "react-app",
3
"rules": {
4
"no-mixed-operators": 0,
5
- "no-ex-assign": 0
5
+ "no-ex-assign": 0,
6
+ "no-throw-literal": 0
7
}
8
}