react-server
react-server copied to clipboard
Cannot access static assets on Windows by default
Due to this change, react-server will listen 0.0.0.0 by default.
Then according to this, the default path for static assets would be http://0.0.0.0:3000, which is not accessible in Windows.
I have the same issue in Windows

nobody found a solution for this error ?
try using http://localhost:3000
and inside your ".reactserverrc" file add the host, so it looks something like this
{ "routesFile": "routes.json", "host":"localhost", "port": 3000, "env": { "production": { "port": 8080 } }, "customMiddlewarePath": "express.config.js" }