electron apps are served from file protocol, so they need to be built in a different way.
I’ve made it work by adding "homepage": "."
in the package.json
and removing the <base href="/" />
in index.html
or changing it to <base href="%PUBLIC_URL%/">
3 Likes