So, I developed a small React application using create-react-app. (I have always made applications from scratch.)
Then, after I was kind of happy with it, I decided to r
Navigate inside the directory of your app first.
According to the official create-react-app website. When you run npm run build
you create a build
directory with a production build of your app.
After running the command above the next thing you can do to check the build version of your app is to to install serve
to serve your status site on the port 5000 by default.
npm install -g serve
serve -s build
This will copy the link to your clipboard that you can paste in your browser and see the build version of you app.