The problem in my case was the wrong path.
After running npm run build
React created static files, but in index.html was something like href="/static/css/main.39c237f9.chunk.css"
so I added a dot at the beginning of the path, becoming href="./static/css/main.39c237f9.chunk.css
.