I have a react application created using 'npm init react-app myapp'. I'm running the app by executing npm start. I need to run the app under a certain path like /myapp, similar to what we do with angular apps when we execute 'ng serve --base-href /myapp/.
I'm running the app on 'localhost:3000'
I need to run it on 'localhost:3000/app'
How can I do this?
thanks