Hello,
I’m facing, what seems to be a rather common issue with Netlify, which is the infamous “when I refresh my page on a perfectly good URL, Netlify displays my 404 page briefly before rendering the correct associated page”.
And of course, I don’t have this issue locally, so I have to deploy every little fix idea I have every 5 minutes to check if it actually does something
If I’m here, it’s because unfortunately in my case, adding a _redirects
file in my public/
folder with this line /* /index.html 200
doesn’t change a thing !
I tried adding a .txt
to the _redirects
file, in case this was coming from my compiler.
Obviously, I’ve tried the alternative way with a netlify.toml
and this config :
[[redirects]] from = "/*" to = "/index.html" status = 200
But still no change…
I’m doing a full front-end routing in React.
Here is the URL of my app and a valid URL to reproduce my issue
Thank you very much in advance for your help