In the past, I've only uploaded my front end applications as static versions using github's GH-Pages. This is my first React app and it connects to a backend API that I have uploaded and running on Heroku.
I used Create-React-App to build this app in react. When I command npm run build... Webpack builds out my es5 version of the code so that it can be read by the browser. So my question is, being this is my first time uploading a front end application on heroku, how do I do this with my react files?
Thanks