2

So this is the repository

https://github.com/fredericojesus/mygroceries-angular

and this is the link for github pages

http://fredericojesus.github.io/mygroceries-angular/

For some reason the browser is not getting the files (see console), but they exist so really dunno what's happening, I'm new to github pages, first time trying. Can anyone help ?

Frederico Jesus
  • 649
  • 6
  • 14
  • Greetings, as far as I know, `github.io` only serves static files. So loading external resources (including those on the same domain) won't be fetched. If you can copy paste the contents in your included files in your index.html, it will work just fine. – AdityaParab Sep 18 '15 at 03:47

2 Answers2

3

Just remove the <base href="/"> in your index.html. Then add the folder name to the libraries path.

E.g.

<link rel="stylesheet" href="styles/lib-25ab91c4a2.css">
<link rel="stylesheet" href="styles/app-2b5253690c.css">

<script src="js/lib-05ac045750.js"></script>
<script src="js/app-d3af5f3ca4.js"></script>

Hope this helps.

Alberto I.N.J.
  • 1,855
  • 14
  • 19
0

I was facing same problem without the below answer helped me. Taking off this meta tag made the github page work.

<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" >
Chema
  • 887
  • 8
  • 14