简体   繁体   中英

AngularJS App not working on github pages

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 ?

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

Eg

<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.

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" >

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM