Answers for "when i do refresh in react app, i am getting 404 error"

3

react refresh 404 error

#paste this in nginx conf file
location / {
  if (!-e $request_filename){
    rewrite ^(.*)$ /index.html break;
  }
}
Posted by: Guest on June-24-2021

Code answers related to "when i do refresh in react app, i am getting 404 error"

Browse Popular Code Answers by Language