My application works fine when served locally. I have compiled the build with no errors.
Site link is here - https://evilernie44.github.io/users/index.html
When I try to load the site via the github page, I get a 404 on my get requests.
I have tried adding a 404.html and then copying the contents of index.html to it as suggested by angular docs but I still cannot seem to get it to work.
I am at a loss as regards to what to do next, does anyone have any suggestions.
<base href="/">
to<base href="https://evilernie44.github.io/users">
. See the--baseHref
flag forng build
if you are using the CLI: angular.io/cli/build – Dasheen/users
should do the trick. – Dasheen