I have some subfolders inside the public folder. When I build these subfolders are put in the root of the build folder.
public/
mySubfolder/
favicon.ico
index.html
...
build/
mySubfolder/
static/
favicon.ico
index.html
...
When I serve these files as static using express, serve or firebase, heroku, now... I can't access to these subfolders by url. Example: If i put one file of one of these subfolders in a iframe, I can't access to it, while if I put the path in a src attribute of a img tag it works..
Maybe the subfolders goes in conflict with routes, but I Haven't routes with a subfolder names.
My project is on github: https://github.com/Darklod/p5-sketches-react/tree/heroku?files=1 (Not Updated)
p.s. I have already read this guide: https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#deployment
For serving the React app with express you would need something like this in your configuration:
In that example replace
react
with whatever the folder is called where your React app is locatedI sadly haven't used firebase or heroku for serving React apps yet, so I sadly can't help you out with that, but I hope the Express part is solved with that