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
Currently, http://localhost:8080 won't hot-reload when a ReactQL project is bound to a non-localhost IP due to cross-origin restrictions. This makes it difficult to test over a LAN.
This needs adding to the Webpack dev config:
// Allow any origins, for use with Docker or alternate hosts, etc
headers: {
'Access-Control-Allow-Origin': '*',
},