I was not able to reload pages in my React app (got 404 error), so I had to add the following to my apache conf file:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^ /index.html [L]
After that change the errors shown in the image appeared:
I have already seen a similar stackoverflow question
But none of the answers related to ReactJS work for me. This has clearly to do with my css files. I am currently storing them in a css folder under the src folder in my project.
Any idea what is going on?