GitHub Pages is designed to host your personal, organization, or project pages from a GitHub repository.
The project was built assuming it is hosted at /mvp/.
You can control this with the homepage field in your package.json.
The build folder is ready to be deployed.
To publish it at https://connectionaxis.github.io/mvp, run:
yarn add --dev gh-pages
Add the following script in your package.json.
// ...
"scripts": {
// ...
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
}
Then run:
yarn run deploy
Find out more about deployment here: bit.ly/CRA-deploy