i have a problem. When i build my React project using npm run build && serve-s build
the project build running a blank page.
I search on Google this problem and the community fix using "homepage": "."
in the package.json, then i tried set this flag, but nothing. I tried too using "homepage": "mysite.com/site/app/build"
(this is path to my project).
And my package.json includes "homepage": "."
I'm using react-router-dom
for routes managment and i tried change the BrwoserRouter
to HashRouter
and add basename="/"
to BrwoserRouter
and nothing.
Someone help me?