Thanks for the reply @perry. In the most recent deploy, I see “No redirect rules processed.” I can confirm the _redirects file in our Github repository.
This site has a publish directory set (which is build/ as can be seen above). The _redirects file needs to be copied here during the build. This can be done by making the build command the one below:
npm run build && cp _redirects build/
The “&&” is a “logical and” which only proceeds to the next step (copying the redirects) if the build itself was successful. If “;” is used instead, it would mean even failed runs of npm run build would be published. The && is very important to prevent the publishing of failed builds.
Would you please try changing your build command to that and let us know it if resolves the issue?