Facebook provides a create-react-app command to build react apps. When we run npm run build, we see output in /build folder.
create-react-app
npm run build
/build
I had the scenario like want to rename the folder and change the build output location, and used below code in the package.json with the latest version
"build": "react-scripts build && mv build ../my_bundles"