You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"start": "PORT=4000 react-scripts start" only works on macOS and some Linux distributions.
As per the issue solved here perhaps either remove the custom port number altogether.
Or use cross-env to allow the project to be started on port 4000 regardless of platform:
run yarn add -D cross-env
"start": "PORT=4000 react-scripts start"
only works on macOS and some Linux distributions.As per the issue solved here perhaps either remove the custom port number altogether.
Or use
cross-env
to allow the project to be started on port 4000 regardless of platform:run
yarn add -D cross-env
and then change
"start": "PORT=4000 react-scripts start,"
to
start": "cross-env PORT=4000 react-scripts start",
The text was updated successfully, but these errors were encountered: