I realize this question has been asked multiple times but nothing has worked for me...
I\'m trying to create a static build of a create-react-app projec
Remove the "homepage": "app-url" from package.json. Absence of homepage in package.json will assume that it will be hosted at the server root, or you will serve the build with serve -s build.
And Yes, specifying homepage will be helpful when you are going to deploy the App in a sub-directory of the server root.
To host your app on the IIS with the name somedomain.net and your solution already has a Web API project.
"homepage": "somedomain.net/React-Project/Client-App/build"