When I refresh my website I get a 404. This is with Angular2, typescript and firebase.
I've deployed to firebaseapp with my Angular2 app.
Routes seem to change fine but when I refresh the browser it redirects me to 404 page.
When I refresh locally this doesn't happen.
Am I missing any route settings or Firebase settings?
This is my firebase.json file:
{
"firebase": "test",
"public": "src",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
I had the same issue on production. The following steps helped me to fix the problem. You have to add in your root module next:
and it will swich to HashLocationStrategy. Angular documentatation
Hope it will help someone !!
For Firebase Hosting the documentation on redirects and rewrites is here: https://www.firebase.com/docs/hosting/guide/url-redirects-rewrites.html
From there:
You're likely looking for the first rewrite sample on that page:
This is an instruction for the web server to serve
/index.html
for any incoming request, no matter what the path is.Expanding on the accepted answer I wanted to show that the rewrites rules go inside of the hosting rules. in the firebase.json
Firebase also has an updated docs page where the above example is from.
Also, I was thrown off by the hash (#) question around this. I found that doesn't apply to the new Angular. Making these small changes in the firebase.json, rebuilding, publishing to firebase, and then doing a refresh page with clear-cache immediately resolved my 404 issue with no workarounds required for hashes in the URL.
I think that you use the default mode of Angular2 routing (i.e.
HTML5LocationStrategy
). In this case, you need some configuration on your webserver to make load theindex.html
(your entry point file) for each URLs corresponding to each routes.If you want to switch to the HashBang approach, you need to use this configuration:
In this case, when you refresh the page, it will be displayed again.
Hope it helps you, Thierry