How to Deploy a React + Python Flask Project on Heroku
Setting Up For Deployment
First, you'll need to build your React project by running the following command:
npm run build
After the build process completes, a directory named "build" should appear. This is the folder that we want to deploy onto Heroku...
steffy.hashnode.dev