'Is it possible to run a react app that already has been assigned a domain name, locally?
I have a React application which is currently running in a server under a particular Domain name. I want to develop it further and hence copied the entire directory into my local system using ssh command. After installing all the dependencies using npm install, and then on trying to start the app; my entire system is hanging. Thinking that there might be something wrong with my system, I tried and successfully ran another React SPA from my local system. I am relatively new to React and CS in general so could anyone give any explanation as to why this is happening?
Solution 1:[1]
webpack < 5 was used to include polyfills for node.js core modules by default. Maybe this was the reason for the code not compiling.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | AU_97_CB |
