Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
The problem :
When we have a react.js based site (hosted on port 8000) and ngrok it for development purposes we get
Invalid Host Header
The fix is to override the header on reflection:
ngrok http 8000 -host-header="localhost:8000"
That’s it,