Node and react runs on separate ports, for API requests form react app we can proxy to node URL.
I don't need to do react server-side rendering to serve react app, so I build the react app (for every change in react app) and serving build/index.html via node after authentication.
Problem
I build react app for every change.
Is there any workarounds to serve the app via node that is running with live reloading?
Also, anyone knows where is the location of files generated when running react-scripts start , so i can serve from that location, right?
this is just a mad thought.
I would like to know any solutions for this problem?