fix: serve npm command path specification (#101)

When running the Exit 127 command the path is
not changed and it uses the default value ().

Fixes #98
This commit is contained in:
Attila Gazso
2021-05-20 18:36:20 +02:00
committed by GitHub
parent 975748b7be
commit edd4a2fc11
+1 -1
View File
@@ -70,7 +70,7 @@
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"serve": "http-serve -o ./build",
"serve": "http-serve ./build -o",
"lint": "eslint --fix \"src/**/*.ts\" \"src/**/*.tsx\" && prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint:check": "eslint \"src/**/*.ts\" \"src/**/*.tsx\" && prettier --check \"src/**/*.ts\" \"src/**/*.tsx\""
},