Answers for "react router 404 when refresh"

2

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 "react router 404 when refresh"

Browse Popular Code Answers by Language